Remove sleeping and replace escaped text.
This commit is contained in:
parent
5d8ad79750
commit
1392cad895
2 changed files with 8 additions and 8 deletions
|
@ -73,20 +73,20 @@ class Spinach::Features::EventFilters < Spinach::FeatureSteps
|
|||
end
|
||||
|
||||
When 'I click "push" event filter' do
|
||||
sleep 1
|
||||
wait_for_ajax
|
||||
click_link("Push events")
|
||||
sleep 2
|
||||
wait_for_ajax
|
||||
end
|
||||
|
||||
When 'I click "team" event filter' do
|
||||
sleep 1
|
||||
wait_for_ajax
|
||||
click_link("Team")
|
||||
sleep 2
|
||||
wait_for_ajax
|
||||
end
|
||||
|
||||
When 'I click "merge" event filter' do
|
||||
sleep 1
|
||||
wait_for_ajax
|
||||
click_link("Merge events")
|
||||
sleep 2
|
||||
wait_for_ajax
|
||||
end
|
||||
end
|
||||
|
|
|
@ -69,13 +69,13 @@ describe 'Profile > Preferences', feature: true do
|
|||
allowing_for_delay do
|
||||
find('#logo').click
|
||||
|
||||
expect(page).to have_content('You don\'t have starred projects yet')
|
||||
expect(page).to have_content("You don't have starred projects yet")
|
||||
expect(page.current_path).to eq starred_dashboard_projects_path
|
||||
end
|
||||
|
||||
click_link 'Your Projects'
|
||||
|
||||
expect(page).not_to have_content('You don\'t have starred projects yet')
|
||||
expect(page).not_to have_content("You don't have starred projects yet")
|
||||
expect(page.current_path).to eq dashboard_projects_path
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue