Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tap reporter #160

Merged
merged 1 commit into from Feb 27, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/reporters/tap.js
Expand Up @@ -4,8 +4,8 @@


var nodeunit = require('../nodeunit'), var nodeunit = require('../nodeunit'),
path = require('path'), path = require('path'),
assert = require('tap-assert'), assert = require('tap').assert,
TapProducer = require('tap-producer'); TapProducer = require('tap').Producer;


/** /**
* Reporter info string * Reporter info string
Expand Down
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -61,7 +61,6 @@
, "directories" : { "lib": "./lib", "doc" : "./doc", "man" : "./man1" } , "directories" : { "lib": "./lib", "doc" : "./doc", "man" : "./man1" }
, "bin" : { "nodeunit" : "./bin/nodeunit" } , "bin" : { "nodeunit" : "./bin/nodeunit" }
, "dependencies" : , "dependencies" :
{ "tap-assert": ">=0.0.9" { "tap": ">=0.2.3"
, "tap-producer": ">=0.0.1"
} }
} }