From 2cf7dccfc7a5812f175ab7fdb7e3eaa821b056cf Mon Sep 17 00:00:00 2001 From: Kyle Wade Date: Mon, 19 Aug 2024 16:20:29 -0400 Subject: [PATCH] Remove authType from tests --- bwell-typescript-react/e2e/api/user-manager.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bwell-typescript-react/e2e/api/user-manager.test.ts b/bwell-typescript-react/e2e/api/user-manager.test.ts index 1668e20..e78e45c 100644 --- a/bwell-typescript-react/e2e/api/user-manager.test.ts +++ b/bwell-typescript-react/e2e/api/user-manager.test.ts @@ -1,5 +1,5 @@ import { describe, it, expect, beforeAll } from 'vitest'; -import { AuthType, BWellSDK, UpdateProfileRequest } from '@icanbwell/bwell-sdk-ts'; +import { BWellSDK, UpdateProfileRequest } from '@icanbwell/bwell-sdk-ts'; const DEFAULT_KEY = process.env.VITE_DEFAULT_KEY ?? ""; const DEFAULT_OAUTH_CREDS = process.env.VITE_DEFAULT_OAUTH_CREDS ?? ""; @@ -51,7 +51,6 @@ describe("Username/Password Authentication", () => { it("Should work with valid username/password", async () => { sdk = new BWellSDK({ clientKey: USERNAME_PASSWORD_KEY, - authType: AuthType.UsernamePassword, }); await sdk.initialize(); @@ -68,7 +67,6 @@ describe("Username/Password Authentication", () => { it("Should fail with invalid username/password", async () => { sdk = new BWellSDK({ clientKey: USERNAME_PASSWORD_KEY, - authType: AuthType.UsernamePassword, }); await sdk.initialize();