summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods/startRegistration.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/browser/src/methods/startRegistration.test.ts')
-rw-r--r--packages/browser/src/methods/startRegistration.test.ts53
1 files changed, 0 insertions, 53 deletions
diff --git a/packages/browser/src/methods/startRegistration.test.ts b/packages/browser/src/methods/startRegistration.test.ts
index f875a08..683bae8 100644
--- a/packages/browser/src/methods/startRegistration.test.ts
+++ b/packages/browser/src/methods/startRegistration.test.ts
@@ -356,56 +356,3 @@ describe('WebAuthnError', () => {
});
});
});
-
-/**
- * Custom errors raised by WebAuthn
- */
-
-class AbortError extends Error {
- constructor() {
- super();
- this.name = 'AbortError';
- }
-}
-
-class ConstraintError extends Error {
- constructor() {
- super();
- this.name = 'ConstraintError';
- }
-}
-
-class InvalidStateError extends Error {
- constructor() {
- super();
- this.name = 'InvalidStateError';
- }
-}
-
-class NotAllowedError extends Error {
- constructor() {
- super();
- this.name = 'NotAllowedError';
- }
-}
-
-class NotSupportedError extends Error {
- constructor() {
- super();
- this.name = 'NotSupportedError';
- }
-}
-
-class SecurityError extends Error {
- constructor() {
- super();
- this.name = 'SecurityError';
- }
-}
-
-class UnknownError extends Error {
- constructor() {
- super();
- this.name = 'UnknownError';
- }
-}