Skip to content

Commit 897dcdb

Browse files
committed
Update to use QUnit 2.4 and use the new 'qunit' package name
1 parent 975f99e commit 897dcdb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/child.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var QUnit = require('qunitjs'),
1+
var QUnit = require('qunit'),
22
path = require('path'),
33
_ = require('underscore'),
44
trace = require('tracejs').trace,

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@
3737
"node": ">=0.6.0 < 8.0"
3838
},
3939
"scripts": {
40-
"test": "node ./test/testrunner.js && eslint .",
40+
"test": "node test/testrunner.js && eslint .",
4141
"lint": "eslint ."
4242
},
4343
"dependencies": {
4444
"argsparser": "^0.0.7",
4545
"cli-table": "^0.3.0",
4646
"co": "^4.6.0",
47-
"qunitjs": "2.1.1",
47+
"qunit": "2.4.1",
4848
"tracejs": "^0.1.8",
4949
"underscore": "^1.6.0"
5050
},

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ that was deprecated and now lives under the name [`qnit`](https://www.npmjs.com/
3636

3737
### API
3838

39-
http://api.qunitjs.com
39+
https://api.qunitjs.com
4040

4141
#### The only exception
4242

@@ -69,7 +69,7 @@ $ qunit -c code:./code.js -d utils:utilmodule -t ./time.js
6969
#### via api
7070

7171
```javascript
72-
var testrunner = require("qunit");
72+
var testrunner = require("node-qunit");
7373

7474
// Defaults:
7575
{

0 commit comments

Comments
 (0)