We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d3ab36 + 377f1c5 commit 77ddb35Copy full SHA for 77ddb35
package.json
@@ -29,13 +29,14 @@
29
"test": "test"
30
},
31
"scripts": {
32
- "precommit": "npm test -- --reporter=dot",
33
- "prepush": "npm test -- --reporter=dot",
+ "precommit": "npm run lint && npm run test:quiet",
+ "prepush": "npm run test:quiet",
34
"start": "NODE_ENV=development node ./bin/tldr",
35
"example": "NODE_ENV=development node ./bin/tldr tar",
36
- "test": "mocha test --recursive --reporter=spec",
+ "test": "mocha test",
37
+ "test:quiet": "npm test -- --reporter=dot",
38
"lint": "eslint lib test bin/tldr",
- "watch": "mocha --watch test --recursive --reporter=min --growl"
39
+ "watch": "npm run test:quiet -- --reporter=min --watch --growl"
40
41
"os": [
42
"!win32"
0 commit comments