Skip to content

Instantly share code, notes, and snippets.

@kirpachov
Created October 31, 2024 16:59
Show Gist options
  • Save kirpachov/5f64fa3de939499e98759205427f0379 to your computer and use it in GitHub Desktop.
Save kirpachov/5f64fa3de939499e98759205427f0379 to your computer and use it in GitHub Desktop.
require "rails_helper"
RSpec.describe Something do
# ...
around do |example|
ActiveJob::Base.queue_adapter.perform_enqueued_jobs = true
example.run
ActiveJob::Base.queue_adapter.perform_enqueued_jobs = false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment