Skip to content

Commit

Permalink
ignore .nyc_output, upgrade tap, use coverage, rm fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed May 26, 2015
1 parent 155124b commit 480da05
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,4 +4,5 @@ node_modules/*
v8.log
profile.txt
nyc_output/
.nyc_output/
coverage/
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -26,13 +26,13 @@
"devDependencies": {
"mkdirp": "0",
"rimraf": "^2.2.8",
"tap": "^1.1.0",
"tap": "^1.1.4",
"tick": "0.0.6"
},
"scripts": {
"prepublish": "npm run benchclean",
"profclean": "rm -f v8.log profile.txt",
"test": "tap test/*.js",
"test": "tap test/*.js --cov",
"test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js",
"bench": "bash benchmark.sh",
"prof": "bash prof.sh && cat profile.txt",
Expand Down
2 changes: 1 addition & 1 deletion test/zz-cleanup.js
Expand Up @@ -5,7 +5,7 @@ var tap = require("tap")
, path = require("path")

tap.test("cleanup fixtures", function (t) {
rimraf(path.resolve(__dirname, "a"), function (er) {
rimraf(path.resolve(__dirname, "fixtures"), function (er) {
t.ifError(er, "removed")
t.end()
})
Expand Down

0 comments on commit 480da05

Please sign in to comment.