Move abuse_reports_spec.js to Jest

This commit is contained in:
Winnie Hellmann 2019-03-28 20:42:17 +01:00
parent a85fd76f52
commit 7a7866a54a
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ describe('Abuse Reports', () => {
preloadFixtures(FIXTURE);
beforeEach(function() {
beforeEach(() => {
loadFixtures(FIXTURE);
this.abuseReports = new AbuseReports();
new AbuseReports(); // eslint-disable-line no-new
$messages = $('.abuse-reports .message');
});