summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/index.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser/src/index.test.ts')
-rw-r--r--packages/browser/src/index.test.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/browser/src/index.test.ts b/packages/browser/src/index.test.ts
new file mode 100644
index 0000000..0d132ba
--- /dev/null
+++ b/packages/browser/src/index.test.ts
@@ -0,0 +1,13 @@
+import * as index from './index';
+
+test('should export method `startAttestation`', () => {
+ expect(index.startAttestation).toBeDefined();
+});
+
+test('should export method `startAssertion`', () => {
+ expect(index.startAssertion).toBeDefined();
+});
+
+test('should export method `supportsWebauthn`', () => {
+ expect(index.supportsWebauthn).toBeDefined();
+});