summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/sanity/failing_spec.rb
blob: 7e0480e90673d995705bff38264f7357282a7831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module QA
  context 'Sanity checks', :orchestrated, :failing do
    describe 'Failing orchestrated example' do
      it 'always fails' do
        Runtime::Browser.visit(:gitlab, Page::Main::Login)

        expect(page).to have_text("These Aren't the Texts You're Looking For", wait: 1)
      end
    end
  end
end