forked from adventurerscodex/adventurerscodex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.json
45 lines (44 loc) · 1.03 KB
/
jest.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,
"clearMocks": true,
"transform": {
".*": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"src",
"node_modules"
],
"modulePaths": [
"src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"test/**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageDirectory": "./coverage",
"notify": false,
"roots": [
"src/",
"test/"
],
"setupFiles": [
"<rootDir>/test/setup.js"
],
"globals": {
"ENVIRONMENT": "dev",
"VERSION": "dsfdfdffdfsdfsd",
"CLIENT_ID": "5vkLTV59I383qojsDTAlgYWuM0uuCfHTf9G0HAeD",
"HOST_URL": "https://app.adventurerscodex.com/charactersheet/",
"HOME_URL": "/",
"LOGIN_URL": "/api/o/authorize?client_id={CLIENT_ID}&response_type=token",
"PUBSUB_HOST_JID": "pubsub.adventurerscodex.com",
"MUC_SERVICE": "chat.adventurerscodex.com",
"XMPP_WS_URL": "wss://adventurerscodex.com/chat/",
"BUILD_DATE": "sfsdfsd",
"CURRENT_YEAR": "fdsfsdfss"
}
}