Skip to content

Commit 3c81e5a

Browse files
committed
pass deps and log cli options to the runner
1 parent e309e39 commit 3c81e5a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ if(!code || !tests) {
105105
return;
106106
}
107107

108-
testrunner.run({ code: code, tests: tests }, function(err, stats) {
108+
testrunner.run({ code: code, tests: tests, deps: o.deps, log: o.log }, function(err, stats) {
109109
if (err) {
110110
console.error(err);
111111
process.exit(1);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "qunit",
33
"description": "QUnit testing framework for nodejs",
4-
"version": "0.5.16",
4+
"version": "0.5.17",
55
"author": "Oleg Slobodskoi <oleg008@gmail.com>",
66
"contributors": [
77
{"name": "Jonathan Buchanan"},

0 commit comments

Comments
 (0)