Commit d5327b4e authored by Phil Hughes's avatar Phil Hughes

Test update

It wasnt testing what it was saying it should be...
parent 89e37d0b
......@@ -508,18 +508,12 @@ describe 'Issue Boards', feature: true, js: true do
end
it 'filters by clicking label button on issue' do
page.within '.issues-filters' do
click_button('Label')
page.within '.dropdown-menu-labels' do
click_link(bug.title)
wait_for_vue_resource(spinner: false)
find('.dropdown-menu-close').click
end
page.within(find('.board', match: :first)) do
expect(page).to have_selector('.card', count: 6)
click_button(bug.title)
wait_for_vue_resource(spinner: false)
end
wait_for_vue_resource
page.within(find('.board', match: :first)) do
expect(page.find('.board-header')).to have_content('1')
expect(page).to have_selector('.card', count: 1)
......@@ -530,17 +524,8 @@ describe 'Issue Boards', feature: true, js: true do
expect(page).to have_selector('.card', count: 0)
end
wait_for_vue_resource
page.within(find('.board', match: :first)) do
click_button(bug.title)
wait_for_vue_resource(spinner: false)
expect(page).to have_selector('.card', count: 6)
end
page.within('.labels-filter') do
expect(find('.dropdown-toggle-text')).not_to have_content(bug.title)
expect(find('.dropdown-toggle-text')).to have_content(bug.title)
end
end
......
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