Skip to content

Commit

Permalink
test: remove dependency on tap
Browse files Browse the repository at this point in the history
Virtually unused except as a test runner.  Replace with a small script.
  • Loading branch information
bnoordhuis committed Jun 25, 2017
1 parent fcd7f7e commit ee999ba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions package.json
Expand Up @@ -20,10 +20,7 @@
"dependencies": {
"nan": "^2.3.5"
},
"devDependencies": {
"tap": "~0.4.8"
},
"scripts": {
"test": "tap test/test-*.js"
"test": "node test/run-tests.js"
}
}
4 changes: 4 additions & 0 deletions test/run-tests.js
@@ -0,0 +1,4 @@
'use strict';
require('./test-basic');
require('./test-big-buffer');
require('./test-stream');

0 comments on commit ee999ba

Please sign in to comment.