mirror of https://github.com/mastodon/mastodon
Add regression coverage for admin reports resolution button within form (#32248)
This commit is contained in:
parent
49407e7623
commit
463f9197d8
|
@ -28,4 +28,17 @@ RSpec.describe 'report interface', :attachment_processing, :js, :streaming do
|
|||
page.scroll_to(page.find('.batch-table__row'))
|
||||
expect(page).to have_css('.spoiler-button__overlay__label')
|
||||
end
|
||||
|
||||
it 'marks a report resolved from the show page actions area' do
|
||||
visit admin_report_path(report)
|
||||
|
||||
expect { resolve_report }
|
||||
.to change { report.reload.action_taken_at }.to(be_present).from(nil)
|
||||
end
|
||||
|
||||
def resolve_report
|
||||
within '.report-actions' do
|
||||
click_on I18n.t('admin.reports.mark_as_resolved')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue