@testim/testim-cli 3.216.0 → 3.217.0
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/cli.js
CHANGED
|
@@ -34,15 +34,6 @@ async function checkNodeVersion() {
|
|
|
34
34
|
if (!semver.satisfies(process.version, version)) {
|
|
35
35
|
throw new ArgError(`Required node version ${version} not satisfied with current version ${process.version}`);
|
|
36
36
|
}
|
|
37
|
-
|
|
38
|
-
if (process.version.startsWith('v10.')) {
|
|
39
|
-
// give one day grace period.
|
|
40
|
-
const limitDate = new Date('2021-12-13T00:00:00.000z');
|
|
41
|
-
if (limitDate < new Date()) {
|
|
42
|
-
throw new ArgError('Node.js v10 is no longer supported, please upgrade to Node.js 12, 14 or 16.');
|
|
43
|
-
}
|
|
44
|
-
console.warn('Node.js v10 is no longer supported by the Testim CLI. Please upgrade to Node.js 12, 14 or 16.');
|
|
45
|
-
}
|
|
46
37
|
}
|
|
47
38
|
|
|
48
39
|
function main() {
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"typescript": {
|
|
8
|
-
"version": "
|
|
9
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-
|
|
10
|
-
"integrity": "sha512-
|
|
8
|
+
"version": "4.5.5",
|
|
9
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz",
|
|
10
|
+
"integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==",
|
|
11
11
|
"dev": true
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@testim/testim-cli": "latest",
|
|
8
8
|
"@types/chai": "4.3.0",
|
|
9
9
|
"chai": "4.3.4",
|
|
10
|
-
"cross-env": "
|
|
10
|
+
"cross-env": "7.0.3"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
13
|
"start": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim run \"./tests/**/*.test.js\" --require-credentials",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dev-test": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim run \"./tests/**/*.test.js\" --require-credentials --reporters=chrome,console",
|
|
16
16
|
"debug": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --inspect 9229 run \"./tests/**/*.test.js\" --require-credentials",
|
|
17
17
|
"debug-file": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --inspect 9229 --require-credentials run",
|
|
18
|
-
"debug-examples": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --inspect 9229 run \"./tests/examples/*.test.js\" --require-credentials",
|
|
18
|
+
"debug-examples": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --inspect 9229 run \"./tests/examples/*.test.js\" --require-credentials",
|
|
19
19
|
"headless": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --inspect 9229 run \"./tests/**/*.test.js\" --require-credentials --headless",
|
|
20
20
|
"ci": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim run \"./tests/**/*.test.js\" --grid testim-grid"
|
|
21
21
|
}
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"@types/chai": "4.3.0",
|
|
10
10
|
"chai": "4.3.4",
|
|
11
11
|
"ts-loader": "6.0.4",
|
|
12
|
-
"typescript": "
|
|
13
|
-
"cross-env": "
|
|
12
|
+
"typescript": "4.5.5",
|
|
13
|
+
"cross-env": "7.0.3"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"start": "cross-env NODE_OPTIONS=--max-old-space-size=8196 testim --webpackConfig='./webpack.config.js' run \"./tests/**/*.test.ts\" --require-credentials",
|