diff options
author | Matthew Miller <matthew@millerti.me> | 2022-03-07 20:40:59 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-03-07 20:40:59 -0800 |
commit | c62c1ce7451cb3876851c802d52254dd9fe6d91c (patch) | |
tree | ba4859ee4b70b0ca646d631d2c14d1e1981a386f /packages/browser/src/methods/startRegistration.test.ts | |
parent | 031a6abbd4110e6c57f0a3823c46a533d0cfc58b (diff) |
Run linting
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; |