mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
11 lines
234 B
Ruby
11 lines
234 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ReportsHelper
|
|
def run_report
|
|
click_on "Go"
|
|
expect(page).to have_selector ".loading"
|
|
perform_enqueued_jobs(only: ReportJob)
|
|
expect(page).not_to have_selector ".loading"
|
|
end
|
|
end
|