Skip to content
Snippets Groups Projects
Commit 1a7bb5f2 authored by Alfredo Sumaran's avatar Alfredo Sumaran
Browse files

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

This is to improve reliability on mentioned tests


Former-commit-id: 65c2f43f
parent 3f127816
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -158,7 +158,7 @@ describe 'Issue Boards', feature: true, js: true do
end
 
page.within(first('.board')) do
find('.card:nth-child(2)').click
find('.card:nth-child(2)').trigger('click')
end
 
page.within('.assignee') do
Loading
Loading
Loading
Loading
@@ -43,7 +43,7 @@ describe 'Dashboard > milestone filter', feature: true, js: true do
end
 
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)
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment