qunitx 0.3.5 → 0.3.6
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/README.md +3 -3
- package/package.json +8 -8
- package/vendor/qunit.css +1 -1
- package/vendor/qunit.js +2738 -2654
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# QUnitX
|
|
2
2
|
|
|
3
3
|
Experimental improvements, suggestions for qunit CLI
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|
|
|
7
|
-
Default test output is TAP(
|
|
7
|
+
Default test output is TAP (_Test-Anything-Protocol_) thus you can use any tap reporter of your choice to display test
|
|
8
8
|
output in anyway you like. Example:
|
|
9
9
|
|
|
10
10
|
```zsh
|
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.6",
|
|
5
5
|
"description": "Experimental improvements, suggestions for qunit CLI",
|
|
6
6
|
"author": "Izel Nakri",
|
|
7
7
|
"license": "MIT",
|
|
@@ -37,29 +37,29 @@
|
|
|
37
37
|
"@nanoexpress/middleware-static-serve": "^1.0.3",
|
|
38
38
|
"cheerio": "^1.0.0-rc.10",
|
|
39
39
|
"chokidar": "^3.5.3",
|
|
40
|
-
"esbuild": "^0.14.
|
|
40
|
+
"esbuild": "^0.14.25",
|
|
41
41
|
"js-yaml": "^4.1.0",
|
|
42
42
|
"kleur": "^4.1.4",
|
|
43
|
-
"nanoexpress": "5.2.
|
|
43
|
+
"nanoexpress": "5.2.4",
|
|
44
44
|
"picomatch": "^2.3.1",
|
|
45
|
-
"puppeteer": "13.
|
|
45
|
+
"puppeteer": "13.5.2",
|
|
46
46
|
"recursive-lookup": "1.0.0",
|
|
47
|
-
"ts-node": "^10.
|
|
47
|
+
"ts-node": "^10.7.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"auto-changelog": "^2.4.0",
|
|
51
|
-
"axios": "^0.26.
|
|
51
|
+
"axios": "^0.26.1",
|
|
52
52
|
"cors": "^2.8.5",
|
|
53
53
|
"express": "^4.17.3",
|
|
54
54
|
"mocha": "^9.2.1",
|
|
55
55
|
"prettier": "^2.5.1",
|
|
56
56
|
"qunit": "^2.18.0",
|
|
57
|
-
"qunitx": "^0.3.
|
|
57
|
+
"qunitx": "^0.3.5",
|
|
58
58
|
"release-it": "^14.12.5",
|
|
59
59
|
"uuid": "^8.3.2"
|
|
60
60
|
},
|
|
61
61
|
"volta": {
|
|
62
|
-
"node": "16.13.
|
|
62
|
+
"node": "16.13.2"
|
|
63
63
|
},
|
|
64
64
|
"prettier": {
|
|
65
65
|
"printWidth": 100,
|
package/vendor/qunit.css
CHANGED