From d0e76a3ca7f7cfceb1684aeead5d52af1d4e37f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Xalambr=C3=AD?= Date: Sat, 16 Mar 2024 00:08:32 -0500 Subject: [PATCH] Pass Prettier --- test/index.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/index.test.ts b/test/index.test.ts index 789a9c6..cc109d9 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -124,7 +124,7 @@ describe(OAuth2Strategy, () => { test("should build scope into authorization redirect when provided", async () => { let strategy = new OAuth2Strategy( { ...options, scope: "scope_1 SCOPE2 scOpE3" }, - verify + verify, ); let request = new Request("https://example.com/login"); @@ -137,7 +137,7 @@ describe(OAuth2Strategy, () => { expect(redirect.searchParams.get("scope")).toBe("scope_1 SCOPE2 scOpE3"); } }); - + test("should not override scope provided by derived class", async () => { const DERIVED_SCOPES = "derivedScope1 DERIVED_SCOPE_2"; class DerivedStartegy extends OAuth2Strategy { @@ -148,7 +148,7 @@ describe(OAuth2Strategy, () => { let strategy = new DerivedStartegy( { ...options, scope: "scope_1 SCOPE2 scOpE3" }, - verify + verify, ); let request = new Request("https://example.com/login");