Skip to content

Commit

Permalink
use tape everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Apr 15, 2013
1 parent 5448a02 commit ed0c1c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"test" : "test"
},
"devDependencies" : {
"tap" : "~0.2.5"
"tap" : "~0.4.0",
"tape" : "~0.3.3"
},
"scripts" : {
"test" : "tap test"
"test" : "tap test/*.js"
},
"repository" : {
"type" : "git",
Expand Down
2 changes: 1 addition & 1 deletion test/parse.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var test = require('tap').test;
var test = require('tape');
var parse = require('../').parse;

test('parse shell commands', function (t) {
Expand Down
2 changes: 1 addition & 1 deletion test/quote.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var test = require('tap').test;
var test = require('tape');
var quote = require('../').quote;

test('quote', function (t) {
Expand Down

0 comments on commit ed0c1c6

Please sign in to comment.