diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2016-12-08 14:11:37 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2016-12-09 10:14:48 +0000 |
commit | cf71650220c2d57ae176a47775c0ac3d6ed3d39a (patch) | |
tree | 207c1b71836c689f7a84ac1b9df263171084f631 | |
parent | c808c1c9c88ff3efba938e6259bb5a2f871edae6 (diff) | |
download | gitlab-ce-cf71650220c2d57ae176a47775c0ac3d6ed3d39a.tar.gz |
Fix broken test
-rw-r--r-- | spec/features/environments_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/environments_spec.rb b/spec/features/environments_spec.rb index c7fe622c477..e1b97b31e5d 100644 --- a/spec/features/environments_spec.rb +++ b/spec/features/environments_spec.rb @@ -85,14 +85,14 @@ feature 'Environments page', :feature, :js do end scenario 'does show a play button' do - find('.dropdown-play-icon-container').click + find('.js-dropdown-play-icon-container').click expect(page).to have_content(manual.name.humanize) end scenario 'does allow to play manual action', js: true do expect(manual).to be_skipped - find('.dropdown-play-icon-container').click + find('.js-dropdown-play-icon-container').click expect(page).to have_content(manual.name.humanize) expect { click_link(manual.name.humanize) } |