summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-11-06 14:47:29 +0100
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-11-06 14:47:29 +0100
commitb60ad399acdd753efe4f2d724c47800b6a70056b (patch)
treea4732e5ba72773aed6b5bb358c5be23bd3edecb4 /features
parentc1a893d91a569cf65b381e8c2b56c82824e9f593 (diff)
downloadgitlab-ce-b60ad399acdd753efe4f2d724c47800b6a70056b.tar.gz
Fix test
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features')
-rw-r--r--features/project/commits/tags.feature1
-rw-r--r--features/steps/project/commits/tags.rb7
2 files changed, 4 insertions, 4 deletions
diff --git a/features/project/commits/tags.feature b/features/project/commits/tags.feature
index 24fb84d1cc9..660238c2319 100644
--- a/features/project/commits/tags.feature
+++ b/features/project/commits/tags.feature
@@ -27,7 +27,6 @@ Feature: Project Commits Tags
And I submit new tag form with tag that already exists
Then I should see new an error that tag already exists
- @javascript
Scenario: I delete a tag
Given I visit tag 'v1.1.0' page
Given I delete tag 'v1.1.0'
diff --git a/features/steps/project/commits/tags.rb b/features/steps/project/commits/tags.rb
index ff824c76955..cb5fe20834d 100644
--- a/features/steps/project/commits/tags.rb
+++ b/features/steps/project/commits/tags.rb
@@ -57,13 +57,14 @@ class Spinach::Features::ProjectCommitsTags < Spinach::FeatureSteps
end
step "I delete tag 'v1.1.0'" do
- first('.btn-remove').click
- sleep 0.05
+ page.within('.content') do
+ first('.btn-remove').click
+ end
end
step "I should not see tag 'v1.1.0'" do
page.within '.tags' do
- expect(page.all(visible: true)).not_to have_content 'v1.1.0'
+ expect(page).not_to have_link 'v1.1.0'
end
end
end