From c01fd8466b633c103661652e00e90678f4d9e287 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Sat, 19 Nov 2022 23:54:08 -0800 Subject: Fix issues in Browser due to TypeScript upgrade --- packages/browser/src/methods/startAuthentication.test.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'packages/browser/src/methods/startAuthentication.test.ts') diff --git a/packages/browser/src/methods/startAuthentication.test.ts b/packages/browser/src/methods/startAuthentication.test.ts index e112124..9ebdd77 100644 --- a/packages/browser/src/methods/startAuthentication.test.ts +++ b/packages/browser/src/methods/startAuthentication.test.ts @@ -116,6 +116,7 @@ test('should return base64url-encoded response values', async () => { }, getClientExtensionResults: () => ({}), type: 'webauthn.get', + authenticatorAttachment: '', }); }); }); @@ -163,7 +164,9 @@ test('should send extensions to authenticator if present in options', async () = const extensions: AuthenticationExtensionsClientInputs = { credProps: true, appid: 'appidHere', + // @ts-ignore uvm: true, + // @ts-ignore appidExclude: 'appidExcludeHere', }; const optsWithExts: PublicKeyCredentialRequestOptionsJSON = { -- cgit v1.2.3