summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-08-18 13:59:11 -0700
committerMatthew Miller <matthew@millerti.me>2023-08-18 13:59:11 -0700
commita59634a1a9b0393622fb121fbe229132c01a2624 (patch)
treecb4eb3fdf778dfc88d6d389b609b1cef6ebb4b4d /packages/browser/src/index.test.ts
parente0d32bd2a3a60b4b2fd96a2874eae3ad976483df (diff)
Use single-quotes and increase line width
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r--packages/browser/src/index.test.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts
index ee659d2..945ea1a 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();
});