@testim/testim-cli 3.290.1-beta → 3.291.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 +3560 -3562
- package/cli.js.map +1 -1
- package/npm-shrinkwrap.json +10188 -4599
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testim/testim-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.291.0",
|
|
4
4
|
"description": "Command line interface for running Testing on your CI",
|
|
5
5
|
"author": "Oren Rubin",
|
|
6
6
|
"contributors": [
|
|
@@ -21,9 +21,6 @@
|
|
|
21
21
|
"@types/selenium-webdriver": "4.0.9",
|
|
22
22
|
"@types/validate-npm-package-name": "3.0.3",
|
|
23
23
|
"bundle-deps": "1.0.0",
|
|
24
|
-
"gulp": "4.0.2",
|
|
25
|
-
"gulp-cli": "2.3.0",
|
|
26
|
-
"gulp-json-editor": "2.5.6",
|
|
27
24
|
"merge-stream": "2.0.0",
|
|
28
25
|
"proxyquire": "2.1.3",
|
|
29
26
|
"sinon": "9.0.2",
|
|
@@ -115,10 +112,10 @@
|
|
|
115
112
|
},
|
|
116
113
|
"scripts": {
|
|
117
114
|
"test": "yarn test:pattern './src/**/*.test.[jt]s'",
|
|
118
|
-
"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",
|
|
115
|
+
"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",
|
|
119
116
|
"test:cov": "nyc --reporter=lcov --reporter=text yarn test",
|
|
120
117
|
"upload-bundle-s3": "ts-node-transpile-only scripts/upload.js",
|
|
121
|
-
"prepare-version": "rm -rf ./deploy && mkdir -p deploy &&
|
|
118
|
+
"prepare-version": "rm -rf ./deploy && mkdir -p deploy && tsx buildTool prepare-version-on-prem",
|
|
122
119
|
"make-onprem-deps": "cp ../../yarn.lock deploy && cd deploy && yarn install --production && bundle-deps",
|
|
123
120
|
"pack-onprem": "yarn prepare-version && yarn make-onprem-deps && cd deploy && npm pack && zip -r testim-cli.zip testim-cli-*.tgz",
|
|
124
121
|
"pack-serve": "yarn pack-onprem && http-server deploy/",
|
|
@@ -126,5 +123,8 @@
|
|
|
126
123
|
},
|
|
127
124
|
"engines": {
|
|
128
125
|
"node": ">= 14.0.0"
|
|
126
|
+
},
|
|
127
|
+
"data": {
|
|
128
|
+
"version": "3.291.0"
|
|
129
129
|
}
|
|
130
130
|
}
|