From 854f7eff12e6eeb44edbe8972c63459dabdb4112 Mon Sep 17 00:00:00 2001 From: Walmyr Lima Date: Thu, 18 Jul 2019 15:18:29 +0200 Subject: Better scope end-to-end test Move test pre-conditions to before block, and leave only the test steps and verifications in the it block. --- qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb b/qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb index 2e71ecb5718..78919561a89 100644 --- a/qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb +++ b/qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb @@ -3,7 +3,7 @@ module QA context 'Plan' do describe 'Issue comments' do - it 'user comments on an issue and edits the comment' do + before do Runtime::Browser.visit(:gitlab, Page::Main::Login) Page::Main::Login.perform(&:sign_in_using_credentials) @@ -11,7 +11,9 @@ module QA issue.title = 'issue title' end issue.visit! + end + it 'user comments on an issue and edits the comment' do Page::Project::Issue::Show.perform do |issue_show_page| first_version_of_comment = 'First version of the comment' second_version_of_comment = 'Second version of the comment' -- cgit v1.2.1