summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalmyr Lima <walmyr@gitlab.com>2019-07-18 15:18:29 +0200
committerWalmyr Lima <walmyr@gitlab.com>2019-07-18 15:18:29 +0200
commit854f7eff12e6eeb44edbe8972c63459dabdb4112 (patch)
tree20f5d68c151922d91861d2d8b348602c376815c7
parent9967b2d1ee3644ed22fb441cc754f4e6764a7718 (diff)
downloadgitlab-ce-qa/better-scope-one-more-test.tar.gz
Better scope end-to-end testqa/better-scope-one-more-test
Move test pre-conditions to before block, and leave only the test steps and verifications in the it block.
-rw-r--r--qa/qa/specs/features/browser_ui/2_plan/issue/comment_issue_spec.rb4
1 files changed, 3 insertions, 1 deletions
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'