diff options
Diffstat (limited to 'cli/tests/unit/event_test.ts')
-rw-r--r-- | cli/tests/unit/event_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/event_test.ts b/cli/tests/unit/event_test.ts index d624a54a5..02abff557 100644 --- a/cli/tests/unit/event_test.ts +++ b/cli/tests/unit/event_test.ts @@ -68,7 +68,7 @@ unitTest(function eventPreventDefaultSuccess(): void { }); unitTest(function eventInitializedWithNonStringType(): void { - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any const type: any = undefined; const event = new Event(type); @@ -94,7 +94,7 @@ unitTest(function eventIsTrusted(): void { }); unitTest(function eventInspectOutput(): void { - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any const cases: Array<[any, (event: any) => string]> = [ [ new Event("test"), |