Commit 8c4e4020 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'as-fix-spec-master' into 'master'

Use .trigger(‘click’) instead of .click

See merge request !11317
parents a05db435 65c2f43f
...@@ -158,7 +158,7 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -158,7 +158,7 @@ describe 'Issue Boards', feature: true, js: true do
end end
page.within(first('.board')) do page.within(first('.board')) do
find('.card:nth-child(2)').click find('.card:nth-child(2)').trigger('click')
end end
page.within('.assignee') do page.within('.assignee') do
......
...@@ -43,7 +43,7 @@ describe 'Dashboard > milestone filter', feature: true, js: true do ...@@ -43,7 +43,7 @@ describe 'Dashboard > milestone filter', feature: true, js: true do
end end
it 'should not change active Milestone unless clicked' do it 'should not change active Milestone unless clicked' do
find(milestone_select).click find(milestone_select).trigger('click')
expect(find('.dropdown-content')).to have_selector('a.is-active', count: 1) expect(find('.dropdown-content')).to have_selector('a.is-active', count: 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment