-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjest.setup.js
More file actions
133 lines (120 loc) · 2.58 KB
/
jest.setup.js
File metadata and controls
133 lines (120 loc) · 2.58 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/**
* Jest setup file for mocking browser globals and Leaflet
*/
// Mock Leaflet library
global.L = {
icon: jest.fn((options) => ({
options,
_getIconUrl: jest.fn(),
})),
Icon: class MockIcon {
constructor(options) {
this.options = options;
}
},
DomUtil: {
create: jest.fn((tag, className) => ({
tagName: tag,
className: className || '',
style: {},
appendChild: jest.fn(),
addEventListener: jest.fn(),
})),
addClass: jest.fn(),
removeClass: jest.fn(),
hasClass: jest.fn(() => false),
},
DomEvent: {
on: jest.fn(),
off: jest.fn(),
stop: jest.fn(),
},
Control: {
extend: jest.fn((obj) => function() { return obj; }),
},
map: jest.fn(() => ({
addControl: jest.fn(),
getContainer: jest.fn(() => ({
requestFullscreen: jest.fn(),
webkitRequestFullscreen: jest.fn(),
mozRequestFullScreen: jest.fn(),
msRequestFullscreen: jest.fn(),
})),
invalidateSize: jest.fn(),
locate: jest.fn(),
on: jest.fn(),
setView: jest.fn(),
})),
marker: jest.fn(() => ({
addTo: jest.fn(() => ({
bindPopup: jest.fn(() => ({
openPopup: jest.fn(),
})),
})),
})),
};
// Mock DOM elements for testing
global.document = {
...global.document,
getElementById: jest.fn((id) => {
const element = {
id,
value: '',
textContent: '',
innerHTML: '',
style: {},
classList: {
add: jest.fn(),
remove: jest.fn(),
contains: jest.fn(() => false),
},
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
};
return element;
}),
querySelector: jest.fn((selector) => ({
textContent: '',
style: {},
classList: {
add: jest.fn(),
remove: jest.fn(),
contains: jest.fn(() => false),
},
})),
createElement: jest.fn((tag) => ({
tagName: tag,
textContent: '',
value: '',
appendChild: jest.fn(),
style: {},
classList: {
add: jest.fn(),
remove: jest.fn(),
},
})),
fullscreenElement: null,
exitFullscreen: jest.fn(),
webkitExitFullscreen: jest.fn(),
mozCancelFullScreen: jest.fn(),
msExitFullscreen: jest.fn(),
};
// Mock window object
global.window = {
...global.window,
alert: jest.fn(),
confirm: jest.fn(() => true),
location: {
href: 'http://localhost/',
origin: 'http://localhost',
search: '',
hash: '',
},
};
// Mock console methods to reduce noise in tests
global.console = {
...global.console,
log: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};