forked from the-events-calendar/the-events-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.json
45 lines (45 loc) · 1.11 KB
/
jest.config.json
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
{
"verbose": true,
"testURL": "http://localhost/",
"projects": [
{
"displayName": "common",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jest-environment-jsdom-global",
"testMatch": [
"<rootDir>/common/src/modules/**/__tests__/**/*.js?(x)"
],
"testURL": "http://localhost/",
"moduleNameMapper": {
"\\.(css|pcss)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/__mocks__/icons.js"
}
},
{
"displayName": "events",
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jest-environment-jsdom-global",
"testMatch": [
"<rootDir>/src/modules/**/__tests__/**/*.js?(x)"
],
"testURL": "http://localhost/",
"moduleNameMapper": {
"\\.(css|pcss)$": "identity-obj-proxy",
"\\.(svg)$": "<rootDir>/__mocks__/icons.js"
}
}
],
"testEnvironment": "jest-environment-jsdom-global",
"testPathIgnorePatterns": [
"/node_modules/",
"/lang/",
"/i18n/",
"/src/views",
"/src/Tribe",
"/src/resources"
]
}