bt-runner 4.0.3 → 4.0.4
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/dist/util/runTests.js +0 -1
- package/package.json +9 -9
package/dist/util/runTests.js
CHANGED
@@ -43,7 +43,6 @@ async function runTests(serverPort, testRunners, debug) {
|
|
43
43
|
}, runner.globals ?? []);
|
44
44
|
if (debug) {
|
45
45
|
console.log("Press any key to continue...");
|
46
|
-
// eslint-disable-next-line no-loop-func
|
47
46
|
await new Promise((resolve) => process.stdin.once("data", resolve));
|
48
47
|
}
|
49
48
|
if (result.failures !== 0) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bt-runner",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.4",
|
4
4
|
"description": "",
|
5
5
|
"repository": "github:js-soft/bt-runner",
|
6
6
|
"license": "MIT",
|
@@ -25,20 +25,20 @@
|
|
25
25
|
"test": "npm run test --workspace example"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"express": "^4.
|
29
|
-
"express-http-proxy": "^2.
|
30
|
-
"puppeteer": "^
|
28
|
+
"express": "^4.21.0",
|
29
|
+
"express-http-proxy": "^2.1.1",
|
30
|
+
"puppeteer": "^23.4.1",
|
31
31
|
"yargs": "^17.7.2"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
|
-
"@js-soft/eslint-config-ts": "^1.6.
|
34
|
+
"@js-soft/eslint-config-ts": "^1.6.9",
|
35
35
|
"@js-soft/license-check": "^1.0.9",
|
36
|
-
"@types/express": "^
|
36
|
+
"@types/express": "^5.0.0",
|
37
37
|
"@types/express-http-proxy": "^1.6.6",
|
38
|
-
"@types/node": "^
|
39
|
-
"@types/yargs": "^17.0.
|
38
|
+
"@types/node": "^22.7.4",
|
39
|
+
"@types/yargs": "^17.0.33",
|
40
40
|
"eslint": "^8.36.0",
|
41
|
-
"prettier": "^3.3.
|
41
|
+
"prettier": "^3.3.3"
|
42
42
|
},
|
43
43
|
"publishConfig": {
|
44
44
|
"access": "public"
|