diff options
Diffstat (limited to 'packages/browser/src/methods/startRegistration.test.ts')
-rw-r--r-- | packages/browser/src/methods/startRegistration.test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/browser/src/methods/startRegistration.test.ts b/packages/browser/src/methods/startRegistration.test.ts index 683bae8..78b0157 100644 --- a/packages/browser/src/methods/startRegistration.test.ts +++ b/packages/browser/src/methods/startRegistration.test.ts @@ -203,7 +203,7 @@ describe('WebAuthnError', () => { authenticatorSelection: { residentKey: 'required', requireResidentKey: true, - } + }, }; const rejected = await expect(startRegistration(opts)).rejects; @@ -220,7 +220,7 @@ describe('WebAuthnError', () => { ...goodOpts1, authenticatorSelection: { userVerification: 'required', - } + }, }; const rejected = await expect(startRegistration(opts)).rejects; @@ -332,7 +332,7 @@ describe('WebAuthnError', () => { user: { ...goodOpts1.user, id: Array(65).fill('a').join(''), - } + }, }; const rejected = await expect(startRegistration(opts)).rejects; |