mirror of https://github.com/mastodon/mastodon
Use `sidekiq_inline` in requests/api/v1/reports spec (#30564)
This commit is contained in:
parent
a662c6d1d8
commit
9b9b0e25b6
|
@ -33,8 +33,7 @@ RSpec.describe 'Reports' do
|
||||||
|
|
||||||
it_behaves_like 'forbidden for wrong scope', 'read read:reports'
|
it_behaves_like 'forbidden for wrong scope', 'read read:reports'
|
||||||
|
|
||||||
it 'creates a report', :aggregate_failures do
|
it 'creates a report', :aggregate_failures, :sidekiq_inline do
|
||||||
perform_enqueued_jobs do
|
|
||||||
emails = capture_emails { subject }
|
emails = capture_emails { subject }
|
||||||
|
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
|
@ -57,7 +56,6 @@ RSpec.describe 'Reports' do
|
||||||
subject: eq(I18n.t('admin_mailer.new_report.subject', instance: Rails.configuration.x.local_domain, id: target_account.targeted_reports.first.id))
|
subject: eq(I18n.t('admin_mailer.new_report.subject', instance: Rails.configuration.x.local_domain, id: target_account.targeted_reports.first.id))
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
context 'when a status does not belong to the reported account' do
|
context 'when a status does not belong to the reported account' do
|
||||||
let(:target_account) { Fabricate(:account) }
|
let(:target_account) { Fabricate(:account) }
|
||||||
|
|
Loading…
Reference in New Issue