-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathjest.setup.js
More file actions
82 lines (72 loc) · 1.89 KB
/
jest.setup.js
File metadata and controls
82 lines (72 loc) · 1.89 KB
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
// Setup file for Jest tests
// Add any global test setup here
// Mock URL and URLSearchParams for older environments
if (typeof URL === 'undefined') {
global.URL = class URL {
constructor(url) {
this.href = url;
}
};
}
if (typeof URLSearchParams === 'undefined') {
global.URLSearchParams = class URLSearchParams {
constructor(search) {
this.params = new Map();
if (search) {
search.replace(/^\?/, '').split('&').forEach(param => {
const [key, value] = param.split('=');
if (key) this.params.set(key, value || '');
});
}
}
has(key) {
return this.params.has(key);
}
get(key) {
return this.params.get(key);
}
};
}
// Mock requestIdleCallback if not available
if (typeof requestIdleCallback === 'undefined') {
global.requestIdleCallback = (callback) => setTimeout(callback, 0);
}
// Mock IntersectionObserver
global.IntersectionObserver = class IntersectionObserver {
constructor(callback, options) {
this.callback = callback;
this.options = options;
this.root = options?.root || null;
this.rootMargin = options?.rootMargin || '0px';
this.thresholds = Array.isArray(options?.threshold) ? options.threshold : [options?.threshold || 0];
}
observe() {
// Mock implementation
}
unobserve() {
// Mock implementation
}
disconnect() {
// Mock implementation
}
takeRecords() {
return [];
}
};
// Add custom matchers if needed
expect.extend({
toBeWithinRange(received, floor, ceiling) {
const pass = received >= floor && received <= ceiling;
if (pass) {
return {
message: () => `expected ${received} not to be within range ${floor} - ${ceiling}`,
pass: true
};
} else {
return {
message: () => `expected ${received} to be within range ${floor} - ${ceiling}`,
pass: false
};
}
}
});