Skip to content

Commit

Permalink
Fix import data failing test (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
blacksmith-welder authored Dec 11, 2024
1 parent e05c79a commit 16db493
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions staff_features/jobs/step_definitions/jobs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
end

Then 'the job completes' do
expect(page).not_to have_text 'This job is next in the queue.'
expect(page).to have_text 'The job has completed.'
using_wait_time(15) do
expect(page).to_not have_text 'This job is next in the queue.'
expect(page).to have_text 'The job has completed.'
end
end

Then 'the New & Modified Records section contains {int} links' do |number|
Expand Down

0 comments on commit 16db493

Please sign in to comment.