summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/sanity/failing_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/specs/features/sanity/failing_spec.rb')
-rw-r--r--qa/qa/specs/features/sanity/failing_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/qa/qa/specs/features/sanity/failing_spec.rb b/qa/qa/specs/features/sanity/failing_spec.rb
new file mode 100644
index 00000000000..7e0480e9067
--- /dev/null
+++ b/qa/qa/specs/features/sanity/failing_spec.rb
@@ -0,0 +1,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