qunitx 0.3.0-2 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -11
- package/vendor/qunit.js +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qunitx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.2",
|
|
5
5
|
"description": "Experimental improvements, suggestions for qunit CLI",
|
|
6
6
|
"author": "Izel Nakri",
|
|
7
7
|
"license": "MIT",
|
|
@@ -33,29 +33,29 @@
|
|
|
33
33
|
"@nanoexpress/middleware-static-serve": "^1.0.3",
|
|
34
34
|
"cheerio": "^1.0.0-rc.10",
|
|
35
35
|
"chokidar": "^3.5.2",
|
|
36
|
-
"esbuild": "^0.13.
|
|
36
|
+
"esbuild": "^0.13.15",
|
|
37
37
|
"js-yaml": "^4.1.0",
|
|
38
38
|
"kleur": "^4.1.4",
|
|
39
|
-
"nanoexpress": "5.1.
|
|
39
|
+
"nanoexpress": "5.1.2",
|
|
40
40
|
"picomatch": "^2.2.3",
|
|
41
|
-
"puppeteer": "
|
|
42
|
-
"recursive-lookup": "1.0.0"
|
|
41
|
+
"puppeteer": "11.0.0",
|
|
42
|
+
"recursive-lookup": "1.0.0",
|
|
43
|
+
"ts-node": "^10.4.0"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"auto-changelog": "^2.3.0",
|
|
46
|
-
"axios": "^0.
|
|
47
|
+
"axios": "^0.24.0",
|
|
47
48
|
"cors": "^2.8.5",
|
|
48
49
|
"express": "^4.17.1",
|
|
49
|
-
"mocha": "^9.1.
|
|
50
|
+
"mocha": "^9.1.3",
|
|
50
51
|
"prettier": "^2.4.1",
|
|
51
52
|
"qunit": "^2.17.0",
|
|
52
|
-
"qunitx": "^0.
|
|
53
|
-
"release-it": "^14.11.
|
|
54
|
-
"ts-node": "^10.2.1",
|
|
53
|
+
"qunitx": "^0.3.0",
|
|
54
|
+
"release-it": "^14.11.8",
|
|
55
55
|
"uuid": "^8.3.2"
|
|
56
56
|
},
|
|
57
57
|
"volta": {
|
|
58
|
-
"node": "16.
|
|
58
|
+
"node": "16.13.0"
|
|
59
59
|
},
|
|
60
60
|
"prettier": {
|
|
61
61
|
"printWidth": 100,
|
package/vendor/qunit.js
CHANGED
|
@@ -4239,8 +4239,10 @@
|
|
|
4239
4239
|
config.modules.length = 0;
|
|
4240
4240
|
config.autostart = false;
|
|
4241
4241
|
|
|
4242
|
+
Object.assign(config.stats, { total: 0, passed: 0, failed: 0, skipped: 0, todo: 0 });
|
|
4243
|
+
|
|
4242
4244
|
[
|
|
4243
|
-
"
|
|
4245
|
+
"started", "updateRate", "filter", "depth", "current",
|
|
4244
4246
|
"pageLoaded", "timeoutHandler", "timeout", "pollution"
|
|
4245
4247
|
].forEach( ( key ) => delete config[ key ] );
|
|
4246
4248
|
|