Removed no longer needed eslint disable comments

This commit is contained in:
Alejandro Celaya
2022-03-26 13:07:58 +01:00
parent 28a5166f56
commit 98450ebec3
12 changed files with 10 additions and 13 deletions

View File

@@ -35,7 +35,7 @@ describe('ServersExporter', () => {
beforeEach(() => {
originalConsole = global.console;
global.console = Mock.of<Console>({ error });
(global as any).Blob = class Blob {}; // eslint-disable-line @typescript-eslint/no-extraneous-class
(global as any).Blob = class Blob {};
(global as any).URL = { createObjectURL: () => '' };
});
afterEach(() => {