Skip to content

Commit 4b66e59

Browse files
committed
Configured all unit tests to use dot reporter
refs https://ghost.slack.com/archives/C02G9E68C/p1696490748701419 - this configures mocha to use the dot reporter because the default is way too verbose in CI
1 parent 327bf4b commit 4b66e59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/html-to-plaintext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"scripts": {
1313
"dev": "echo \"Implement me!\"",
14-
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura mocha './test/**/*.test.js'",
14+
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura -- mocha --reporter dot './test/**/*.test.js'",
1515
"test": "yarn test:unit",
1616
"lint:code": "eslint *.js lib/ --ext .js --cache",
1717
"lint": "yarn lint:code && yarn lint:test",

packages/members-csv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"main": "index.js",
88
"scripts": {
99
"dev": "echo \"Implement me!\"",
10-
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
10+
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura -- mocha --reporter dot './test/**/*.test.js'",
1111
"test": "yarn test:unit",
1212
"lint:code": "eslint *.js lib/ --ext .js --cache",
1313
"lint": "yarn lint:code && yarn lint:test",

0 commit comments

Comments
 (0)