Skip to content

Commit

Permalink
Try to execute all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Aug 12, 2021
1 parent cd92a68 commit b85d48f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/utils.js
Expand Up @@ -187,7 +187,7 @@ function prettifyErrorLog ({
// Print all sibling properties except for the standard exclusions.
propertiesToPrint = Object.keys(log).filter(k => excludeProperties.includes(k) === false)
} else {
// Print only sepcified properties unless the property is a standard exclusion.
// Print only specified properties unless the property is a standard exclusion.
propertiesToPrint = errorProperties.filter(k => excludeProperties.includes(k) === false)
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -9,9 +9,9 @@
"pino-pretty": "./bin.js"
},
"scripts": {
"ci": "standard && tap --color ./test/**/*.test.js && npm run test-types",
"ci": "standard && tap --color test/*.test.js test/*/*.test.js --coverage-report=lcovonly && npm run test-types",
"lint": "standard | snazzy",
"test": "tap --100 --color ./test/**/*.test.js",
"test": "tap --100 --color test/*.test.js test/*/*.test.js",
"test-types": "tsc && tsd"
},
"repository": {
Expand Down

0 comments on commit b85d48f

Please sign in to comment.