diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-18 11:11:56 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-18 11:11:56 -0700 |
commit | dfb32f4891f6c955c25b2f305fa702cdaf8c5a5e (patch) | |
tree | 07c3c57caa54c77a08a209fd3cc509a359ed03e4 /packages/browser/src/index.test.ts | |
parent | de5e22f5fec4eb980c77f00c586a1179565359d7 (diff) |
Format browser
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r-- | packages/browser/src/index.test.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts index 945ea1a..ee659d2 100644 --- a/packages/browser/src/index.test.ts +++ b/packages/browser/src/index.test.ts @@ -1,17 +1,17 @@ -import * as index from './index'; +import * as index from "./index"; -test('should export method `startRegistration`', () => { +test("should export method `startRegistration`", () => { expect(index.startRegistration).toBeDefined(); }); -test('should export method `startAuthentication`', () => { +test("should export method `startAuthentication`", () => { expect(index.startAuthentication).toBeDefined(); }); -test('should export method `browserSupportsWebAuthn`', () => { +test("should export method `browserSupportsWebAuthn`", () => { expect(index.browserSupportsWebAuthn).toBeDefined(); }); -test('should export method `platformAuthenticatorIsAvailable`', () => { +test("should export method `platformAuthenticatorIsAvailable`", () => { expect(index.browserSupportsWebAuthn).toBeDefined(); }); |