summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods/startRegistration.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-03-07 20:40:59 -0800
committerMatthew Miller <matthew@millerti.me>2022-03-07 20:40:59 -0800
commitc62c1ce7451cb3876851c802d52254dd9fe6d91c (patch)
treeba4859ee4b70b0ca646d631d2c14d1e1981a386f /packages/browser/src/methods/startRegistration.test.ts
parent031a6abbd4110e6c57f0a3823c46a533d0cfc58b (diff)
Run linting
Diffstat (limited to 'packages/browser/src/methods/startRegistration.test.ts')
-rw-r--r--packages/browser/src/methods/startRegistration.test.ts6
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;