-
Notifications
You must be signed in to change notification settings - Fork 7
/
.nycrc
41 lines (41 loc) · 925 Bytes
/
.nycrc
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
{
"exclude": [
"app.js",
"appConfigurations.js",
"app-insights.js",
"server.js",
"gulpfile.js",
"config/**",
"charts/**",
"**/healthcheck.js",
"steps/errors/duplicate-error/**",
"steps/pcq/createToken.js",
"infrastructure/**",
"node_modules/**",
"mocks/**",
"test/**",
"assets/**",
"dist/**",
"cookie-banner/**",
"mochawesome-report/**",
"webpack/**",
"components/postcodeLookup/assets/**",
"steps/reasons-for-appealing/evidence-upload/EvidenceUpload.js",
"steps/check-your-appeal/CheckYourAppeal.js",
"logger.js"
],
"reporter": [
"lcov",
"text",
"html"
],
"extension": [
".js"
],
"check-coverage": true,
"excludeNodeModules": false,
"report-dir": "./test/unit/coverage/html",
"temp-directory": "./test/unit/coverage/.nyc_output",
"temp-dir": "./test/unit/coverage/.nyc_output",
"all": true
}