1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// Silence some console output
// jest.spyOn(console, 'log').mockImplementation();
// jest.spyOn(console, 'debug').mockImplementation();
// jest.spyOn(console, 'error').mockImplementation();
/**
* JSDom doesn't seem to support `credentials`, so let's define them here so we can mock their
* implementations in specific tests.
*/
Object.defineProperty(window.navigator, 'credentials', {
writable: true,
value: {
create: jest.fn(),
get: jest.fn(),
},
});
/**
* Allow for setting values to `window.location.hostname`
*/
Object.defineProperty(window, 'location', {
writable: true,
value: {
hostname: '',
},
});
/**
* Define WebAuthn's custom API errors
*/
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';
}
}
Object.defineProperty(global, 'AbortError', { value: AbortError });
Object.defineProperty(global, 'ConstraintError', { value: ConstraintError });
Object.defineProperty(global, 'InvalidStateError', { value: InvalidStateError });
Object.defineProperty(global, 'NotAllowedError', { value: NotAllowedError });
Object.defineProperty(global, 'NotSupportedError', { value: NotSupportedError });
Object.defineProperty(global, 'SecurityError', { value: SecurityError });
Object.defineProperty(global, 'UnknownError', { value: UnknownError });
|