Skip to content

Commit

Permalink
chore(deps): removed tap-nirvana from the dev dependencies (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl committed Aug 9, 2022
1 parent ac2f39b commit 35f95d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
7 changes: 1 addition & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,7 @@ or
TEST_BROWSER_TYPE=firefox npm run test-integration
```

These tests emit their results using the TAP protocol. To get a nicer output on the console
you may want to pipe the results to `tap-nirvana`, e.g.

```sh
TEST_BROWSER_TYPE=chrome npm run test-integration | ./node_modules/.bin/tap-nirvana
```
These tests emit their results using the TAP protocol.

## Writing commit messages

Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"serve-static": "1.15.0",
"shelljs": "0.8.5",
"sinon": "14.0.0",
"tap-nirvana": "1.1.0",
"tape": "5.5.3",
"tape-async": "2.3.0",
"tmp": "0.2.1"
Expand All @@ -63,7 +62,7 @@
"test-coverage": "cross-env COVERAGE=y nyc mocha",
"test-minified": "cross-env TEST_MINIFIED_POLYFILL=1 mocha",
"test-integration": "tape test/integration/test-*",
"test-integration:chrome": "cross-env TEST_BROWSER_TYPE=chrome npm run test-integration | tap-nirvana",
"test-integration:firefox": "cross-env TEST_BROWSER_TYPE=firefox npm run test-integration | tap-nirvana"
"test-integration:chrome": "cross-env TEST_BROWSER_TYPE=chrome npm run test-integration",
"test-integration:firefox": "cross-env TEST_BROWSER_TYPE=firefox npm run test-integration"
}
}

0 comments on commit 35f95d5

Please sign in to comment.