Skip to content

Commit

Permalink
Workaround a tap issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydenseric committed Nov 18, 2019
1 parent ef337c8 commit c291dec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .nycrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions changelog.md
Expand Up @@ -9,6 +9,9 @@
### Patch

- Updated dev dependencies.
- Removed the `.nycrc.json` file:
- [`tap`](https://npm.im/tap) now ignores test files by default.
- The `lib/test-helpers` directory is now ignored using `tap` CLI arguments due to [tapjs/node-tap#612](https://github.com/tapjs/node-tap/issues/612).

## 8.1.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -77,7 +77,7 @@
"test": "npm run test:eslint && npm run test:prettier && npm run test:tap",
"test:eslint": "eslint . --ext mjs,js",
"test:prettier": "prettier '**/*.{json,yml,md}' -l",
"test:tap": "tap --test-ignore=src --100",
"test:tap": "tap --test-ignore=src --100 --nyc-arg=--exclude='**/test-helpers/**'",
"prepublishOnly": "npm test"
}
}

0 comments on commit c291dec

Please sign in to comment.