qunitx 0.3.0-1 → 0.3.1
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 +16 -14
- package/vendor/qunit.css +4 -1
- package/vendor/qunit.js +637 -314
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.1",
|
|
5
5
|
"description": "Experimental improvements, suggestions for qunit CLI",
|
|
6
6
|
"author": "Izel Nakri",
|
|
7
7
|
"license": "MIT",
|
|
@@ -25,35 +25,37 @@
|
|
|
25
25
|
"release:beta": "node_modules/.bin/release-it --preRelease=beta --no-git.requireUpstream",
|
|
26
26
|
"release": "node_modules/.bin/release-it",
|
|
27
27
|
"test": "node_modules/.bin/mocha --require test/setup.js --bail --check-leaks -p -t=20000",
|
|
28
|
-
"test:all": "node_modules/.bin/mocha --require test/setup.js --bail --check-leaks test/inputs test/commands test/flags/after-test.js test/flags/before-test.js -p -t=20000"
|
|
28
|
+
"test:all": "node_modules/.bin/mocha --require test/setup.js --bail --check-leaks test/inputs test/commands test/flags/after-test.js test/flags/before-test.js -p -t=20000",
|
|
29
|
+
"test:sanity-first": "./cli.js test/helpers/failing-tests.js test/helpers/failing-tests.ts",
|
|
30
|
+
"test:sanity-second": "./cli.js test/helpers/passing-tests.js test/helpers/passing-tests.ts"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
33
|
"@nanoexpress/middleware-static-serve": "^1.0.3",
|
|
32
34
|
"cheerio": "^1.0.0-rc.10",
|
|
33
35
|
"chokidar": "^3.5.2",
|
|
34
|
-
"esbuild": "^0.
|
|
36
|
+
"esbuild": "^0.13.15",
|
|
35
37
|
"js-yaml": "^4.1.0",
|
|
36
38
|
"kleur": "^4.1.4",
|
|
37
|
-
"nanoexpress": "5.
|
|
39
|
+
"nanoexpress": "5.1.2",
|
|
38
40
|
"picomatch": "^2.2.3",
|
|
39
|
-
"puppeteer": "
|
|
40
|
-
"recursive-lookup": "1.0.0"
|
|
41
|
+
"puppeteer": "11.0.0",
|
|
42
|
+
"recursive-lookup": "1.0.0",
|
|
43
|
+
"ts-node": "^10.4.0"
|
|
41
44
|
},
|
|
42
45
|
"devDependencies": {
|
|
43
46
|
"auto-changelog": "^2.3.0",
|
|
44
|
-
"axios": "^0.
|
|
47
|
+
"axios": "^0.24.0",
|
|
45
48
|
"cors": "^2.8.5",
|
|
46
49
|
"express": "^4.17.1",
|
|
47
|
-
"mocha": "^9.
|
|
48
|
-
"prettier": "^2.
|
|
49
|
-
"qunit": "^2.
|
|
50
|
-
"qunitx": "^0.
|
|
51
|
-
"release-it": "^14.
|
|
52
|
-
"ts-node": "^10.1.0",
|
|
50
|
+
"mocha": "^9.1.3",
|
|
51
|
+
"prettier": "^2.4.1",
|
|
52
|
+
"qunit": "^2.17.0",
|
|
53
|
+
"qunitx": "^0.3.0",
|
|
54
|
+
"release-it": "^14.11.8",
|
|
53
55
|
"uuid": "^8.3.2"
|
|
54
56
|
},
|
|
55
57
|
"volta": {
|
|
56
|
-
"node": "16.
|
|
58
|
+
"node": "16.13.0"
|
|
57
59
|
},
|
|
58
60
|
"prettier": {
|
|
59
61
|
"printWidth": 100,
|
package/vendor/qunit.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* QUnit 2.
|
|
2
|
+
* QUnit 2.17.2
|
|
3
3
|
* https://qunitjs.com/
|
|
4
4
|
*
|
|
5
5
|
* Copyright OpenJS Foundation and other contributors
|
|
@@ -450,6 +450,9 @@
|
|
|
450
450
|
|
|
451
451
|
border-bottom: 1px solid #FFF;
|
|
452
452
|
}
|
|
453
|
+
#qunit-testresult a {
|
|
454
|
+
color: #2F68DA;
|
|
455
|
+
}
|
|
453
456
|
#qunit-testresult .clearfix {
|
|
454
457
|
height: 0;
|
|
455
458
|
clear: both;
|