@dev-blinq/cucumber_client 1.0.1420-dev → 1.0.1422-dev
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/bin/client/code_gen/page_reflection.js +815 -1003
- package/bin/client/cucumber_selector.js +4 -0
- package/bin/client/project.js +186 -202
- package/bin/logger.js +3 -2
- package/bin/min/consoleApi.min.cjs +2 -3
- package/bin/min/injectedScript.min.cjs +16 -16
- package/package.json +15 -7
- package/bin/assets/bundled_scripts/recorder.js +0 -220
package/package.json
CHANGED
|
@@ -1,22 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/cucumber_client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1422-dev",
|
|
4
4
|
"description": " ",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"types": "bin/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"
|
|
9
|
+
"compile": "tsc",
|
|
10
|
+
"compile:watch": "tsc --watch",
|
|
11
|
+
"pack_old": "npm run bundle && mkdir build1 && mkdir build1/bin && cp -R ./src/* ./build1/bin && cp ./package.json ./build1",
|
|
12
|
+
"copy:assets": "cpx \"src/**/!(*.ts|*.tsx|*.jsx|*.mjs|*.cjs|*.cts|*.mts|*.map|*.d.ts)\" build/bin",
|
|
10
13
|
"test": "node ./test/test.js",
|
|
11
14
|
"tests_prod": "rm -rf results.json && cross-env NODE_ENV_BLINQ=prod TOKEN=xxx npx mocha --parallel --jobs=10 ./tests",
|
|
12
15
|
"tests": "node ./multi_test_runner.js",
|
|
13
16
|
"lint": "eslint ./src/**/*.js",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
17
|
+
"clean_old": "rimraf -g build1 && rimraf -g types1",
|
|
18
|
+
"clean": "rimraf -g build && rimraf -g types",
|
|
19
|
+
"build_old": "npm run clean_old && npm run pack_old",
|
|
20
|
+
"build": "npm run clean && npm run compile && npm run copy:assets && ncp package.json build/package.json",
|
|
16
21
|
"build:watch": "npx nodemon --watch src/client --exec 'npm run build'",
|
|
17
22
|
"update_logic": "rm -rf ../logic/node_modules/@dev-blinq && mkdir ../logic/node_modules/@dev-blinq && mkdir ../logic/node_modules/@dev-blinq/cucumber_client && mkdir ../logic/node_modules/@dev-blinq/cucumber_client/bin && mkdir ../logic/node_modules/@dev-blinq/cucumber_client/node_modules && cp -R ./build/* ../logic/node_modules/@dev-blinq/cucumber_client/bin && cp -R ./node_modules/* ../logic/node_modules/@dev-blinq/cucumber_client/node_modules && cp ./package.json ../logic/node_modules/@dev-blinq/cucumber_client/",
|
|
18
23
|
"version-bump": "npm version prepatch --preid=dev",
|
|
19
|
-
"scripts_regression": "npm run
|
|
24
|
+
"scripts_regression": "npm run build && cross-env HEADLESS=true npx mocha --bail --parallel --jobs=12 ./scripts_regression/ --timeout 120000",
|
|
20
25
|
"runtime_reg": "npm run bundle && cross-env HEADLESS=true npx mocha --bail --parallel --jobs=12 ./runtime_regression/ --timeout 4800000",
|
|
21
26
|
"runtime_reg_dev": "npm run bundle && cross-env NODE_ENV_BLINQ=dev TOKEN=bbf2cb6bc1ba4ab625b077b2334b1c2c PROJECT_KEY=680dc09551bc3968d60f8c6d HEADLESS=true mocha --bail --parallel --jobs=12 ./runtime_regression/ --timeout 4800000",
|
|
22
27
|
"runtime_reg_stage": "npm run bundle && cross-env NODE_ENV_BLINQ=stage TOKEN=4b2eda1a52c30a8a1b56c46a5e6e6b46 PROJECT_ID=6821962e5293339975f57600 PROJECT_KEY=680dc09551bc3968d60f8c6d HEADLESS=true mocha --bail --parallel --jobs=12 ./runtime_regression/ --timeout 4800000",
|
|
@@ -34,7 +39,7 @@
|
|
|
34
39
|
"@cucumber/tag-expressions": "^6.1.1",
|
|
35
40
|
"@dev-blinq/cucumber-js": "1.0.184-dev",
|
|
36
41
|
"@faker-js/faker": "^8.1.0",
|
|
37
|
-
"automation_model": "1.0.
|
|
42
|
+
"automation_model": "1.0.826-dev",
|
|
38
43
|
"axios": "^1.7.4",
|
|
39
44
|
"chokidar": "^3.6.0",
|
|
40
45
|
"create-require": "^1.1.1",
|
|
@@ -61,12 +66,15 @@
|
|
|
61
66
|
"yaml": "^2.8.0"
|
|
62
67
|
},
|
|
63
68
|
"devDependencies": {
|
|
69
|
+
"@types/prettier": "^2.7.3",
|
|
64
70
|
"chai": "^5.1.2",
|
|
71
|
+
"cpx": "^1.5.0",
|
|
65
72
|
"eslint": "^8.50.0",
|
|
66
73
|
"http-server": "^14.1.1",
|
|
67
74
|
"mocha": "^10.2.0",
|
|
75
|
+
"ncp": "^2.0.0",
|
|
68
76
|
"readline-sync": "^1.4.10",
|
|
69
77
|
"tsup": "^8.5.0",
|
|
70
|
-
"typescript": "^5.
|
|
78
|
+
"typescript": "^5.9.2"
|
|
71
79
|
}
|
|
72
80
|
}
|