From adc9b570808f0d344f1efd323783a4f5d782e133 Mon Sep 17 00:00:00 2001 From: Akash Satheesan Date: Wed, 12 May 2021 01:14:04 +0530 Subject: [PATCH] chore: reformat with new prettier --- test/unit/register.test.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/unit/register.test.ts b/test/unit/register.test.ts index da69f21d8..de682f5c6 100644 --- a/test/unit/register.test.ts +++ b/test/unit/register.test.ts @@ -9,7 +9,7 @@ describe("register", () => { beforeAll(() => { const { window } = new JSDOM() - global.window = (window as unknown) as Window & typeof globalThis + global.window = window as unknown as Window & typeof globalThis global.document = window.document global.navigator = window.navigator global.location = window.location @@ -35,10 +35,10 @@ describe("register", () => { jest.restoreAllMocks() // We don't want these to stay around because it can affect other tests - global.window = (undefined as unknown) as Window & typeof globalThis - global.document = (undefined as unknown) as Document & typeof globalThis - global.navigator = (undefined as unknown) as Navigator & typeof globalThis - global.location = (undefined as unknown) as Location & typeof globalThis + global.window = undefined as unknown as Window & typeof globalThis + global.document = undefined as unknown as Document & typeof globalThis + global.navigator = undefined as unknown as Navigator & typeof globalThis + global.location = undefined as unknown as Location & typeof globalThis }) it("test should have access to browser globals from beforeAll", () => { @@ -110,7 +110,7 @@ describe("register", () => { origin: "http://localhost:8080", } const { window } = new JSDOM() - global.window = (window as unknown) as Window & typeof globalThis + global.window = window as unknown as Window & typeof globalThis global.document = window.document global.navigator = window.navigator global.location = location as Location @@ -131,10 +131,10 @@ describe("register", () => { jest.restoreAllMocks() // We don't want these to stay around because it can affect other tests - global.window = (undefined as unknown) as Window & typeof globalThis - global.document = (undefined as unknown) as Document & typeof globalThis - global.navigator = (undefined as unknown) as Navigator & typeof globalThis - global.location = (undefined as unknown) as Location & typeof globalThis + global.window = undefined as unknown as Window & typeof globalThis + global.document = undefined as unknown as Document & typeof globalThis + global.navigator = undefined as unknown as Navigator & typeof globalThis + global.location = undefined as unknown as Location & typeof globalThis }) it("should register when options.base is undefined", async () => { // Mock getElementById