-
Notifications
You must be signed in to change notification settings - Fork 0
/
jestconfig.json
39 lines (39 loc) · 1.14 KB
/
jestconfig.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
{
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "/test/.*\\.test\\.ts$",
"collectCoverageFrom": [
"src/**/*.{ts,js}"
],
"coverageReporters": [
"json-summary"
],
"globals": {
"__COMPANY_NAME__": "COMPANY NAME",
"__DOMAIN__": "company.com",
"__IMAP_HOST__": "mail.company.com",
"__IMAP_PORT__": 1234,
"__POP_HOST__": "mail.company.com",
"__POP_PORT__": 1234,
"__SMTP_HOST__": "mail.company.com",
"__SMTP_PORT__": 1234,
"__MOBILESYNC_URL__": "mail.company.com",
"__LDAP_HOST__": "mail.company.com",
"__LDAP_PORT__": 1234,
"__LDAP_SOCKET__": "SSL",
"__LDAP_BASE__": "__LDAP_BASE__",
"__LDAP_USER_FIELD__": "__LDAP_USER_FIELD__",
"__LDAP_USER_BASE__": "__LDAP_USER_BASE__",
"__PROFILE_IDENTIFIER__": "__PROFILE_IDENTIFIER__",
"__PROFILE_UUID__": "__PROFILE_UUID__",
"__MAIL_UUID__": "__MAIL_UUID__",
"__LDAP_UUID__": "__LDAP_UUID__",
"__IMAP_SOCKET__": "SSL",
"__POP_SOCKET__": "SSL",
"__SMTP_SOCKET__": "SSL",
"__MOBILESYNC_NAME__": "mobilesync",
"__LDAP_SEARCH__": "ldapsearch",
"__SUPPORT_URL__": "support.company.com"
}
}