@testim/testim-cli 3.291.0 → 3.293.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 +507 -22344
- package/cli.js.map +7 -1
- package/npm-shrinkwrap.json +450 -1427
- package/package.json +8 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testim/testim-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.293.0",
|
|
4
4
|
"description": "Command line interface for running Testing on your CI",
|
|
5
5
|
"author": "Oren Rubin",
|
|
6
6
|
"contributors": [
|
|
@@ -15,23 +15,24 @@
|
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@types/decompress": "4.2.4",
|
|
17
17
|
"@types/fs-extra": "9.0.13",
|
|
18
|
+
"@types/memory-fs": "0.3.3",
|
|
18
19
|
"@types/ms": "0.7.31",
|
|
19
20
|
"@types/node": "10.17.24",
|
|
20
21
|
"@types/prompts": "2.4.2",
|
|
21
22
|
"@types/selenium-webdriver": "4.0.9",
|
|
23
|
+
"@types/superagent-proxy": "3.0.0",
|
|
22
24
|
"@types/validate-npm-package-name": "3.0.3",
|
|
23
25
|
"bundle-deps": "1.0.0",
|
|
26
|
+
"esbuild": "0.17.10",
|
|
24
27
|
"merge-stream": "2.0.0",
|
|
25
28
|
"proxyquire": "2.1.3",
|
|
26
29
|
"sinon": "9.0.2",
|
|
27
30
|
"sinon-chai": "3.7.0",
|
|
28
31
|
"ts-node": "9.1.1",
|
|
29
|
-
"tsconfig-paths": "3.12.0"
|
|
30
|
-
"tsup": "6.6.0",
|
|
31
|
-
"typescript": "4.6.2"
|
|
32
|
+
"tsconfig-paths": "3.12.0"
|
|
32
33
|
},
|
|
33
34
|
"lazyDependencies": {
|
|
34
|
-
"ngrok": "3.
|
|
35
|
+
"ngrok": "4.3.3",
|
|
35
36
|
"webpack": "5.74.0",
|
|
36
37
|
"playwright": "0.12.1",
|
|
37
38
|
"puppeteer": "2.1.1",
|
|
@@ -111,6 +112,7 @@
|
|
|
111
112
|
"testim": "cli.js"
|
|
112
113
|
},
|
|
113
114
|
"scripts": {
|
|
115
|
+
"start": "ts-node-transpile-only ./src/cli",
|
|
114
116
|
"test": "yarn test:pattern './src/**/*.test.[jt]s'",
|
|
115
117
|
"test:pattern": "IS_UNIT_TEST=1 ../../node_modules/mocha/bin/_mocha --timeout 2000 --exit --recursive --exclude ./src/codim/template.[jt]s/tests/examples/**/*.test.[jt]s --watch-files 'src' -r ts-node/register/transpile-only -r tsconfig-paths/register --reporter mocha-multi-reporters --reporter-options configFile=mochaReporterConfig.js",
|
|
116
118
|
"test:cov": "nyc --reporter=lcov --reporter=text yarn test",
|
|
@@ -123,8 +125,5 @@
|
|
|
123
125
|
},
|
|
124
126
|
"engines": {
|
|
125
127
|
"node": ">= 14.0.0"
|
|
126
|
-
},
|
|
127
|
-
"data": {
|
|
128
|
-
"version": "3.291.0"
|
|
129
128
|
}
|
|
130
|
-
}
|
|
129
|
+
}
|