@applitools/eyes-nightwatch 1.20.2 → 1.20.3
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/CHANGELOG.md +12 -0
- package/package.json +6 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.20.3](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-nightwatch@1.20.2...js/eyes-nightwatch@1.20.3) (2023-10-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/core bumped to 4.0.2
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* generate safe selectors as close as possible to taking dom snapshot ([#1987](https://github.com/applitools/eyes.sdk.javascript1/issues/1987)) ([102208b](https://github.com/applitools/eyes.sdk.javascript1/commit/102208b909c0b149808f6e4c24a0a662305b1b78))
|
|
12
|
+
* @applitools/eyes bumped to 1.11.3
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## [1.20.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-nightwatch@1.20.1...js/eyes-nightwatch@1.20.2) (2023-10-25)
|
|
4
16
|
|
|
5
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-nightwatch",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.3",
|
|
4
4
|
"description": "Applitools Eyes SDK for Nightwatch.js",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-nightwatch",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
"scripts": {
|
|
33
33
|
"lint": "run --top-level eslint '**/*.ts' '**/*.js'",
|
|
34
34
|
"build": "run --top-level tspc --project ./tsconfig.build.json",
|
|
35
|
-
"generate:tests": "
|
|
35
|
+
"generate:tests": "NODE_OPTIONS='--experimental-import-meta-resolve --experimental-loader=@applitools/generic/dist/code-loader.js' generic ./test/generic/config.mjs",
|
|
36
36
|
"test": "run test:it && run test:e2e && run test:coverage",
|
|
37
37
|
"test:local": "run test:it && run test:e2e && MOCHA_OMIT_TAGS=sauce run test:coverage",
|
|
38
38
|
"test:sauce": "MOCHA_ONLY_TAGS=sauce run test:coverage",
|
|
39
|
-
"test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/*.spec.ts'
|
|
39
|
+
"test:it": "MOCHA_GROUP=it run --top-level mocha './test/it/*.spec.ts'",
|
|
40
40
|
"test:e2e": "nightwatch --config test/e2e/nightwatch.conf.js --eyes-config applitools.config.js test/e2e/*.spec.js",
|
|
41
|
-
"test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-nightwatch' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js'
|
|
41
|
+
"test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-nightwatch' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
|
|
42
42
|
"setup": "run --top-level browsers:setup",
|
|
43
43
|
"up:framework": "echo \"$(jq '.devDependencies.nightwatch = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@applitools/driver": "1.14.4",
|
|
47
|
-
"@applitools/eyes": "1.11.
|
|
47
|
+
"@applitools/eyes": "1.11.3",
|
|
48
48
|
"@applitools/spec-driver-webdriver": "1.0.48",
|
|
49
49
|
"@applitools/utils": "1.6.2",
|
|
50
50
|
"webdriver": "7.31.1"
|
|
@@ -52,13 +52,11 @@
|
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@applitools/api-extractor": "^1.2.22",
|
|
54
54
|
"@applitools/bongo": "^5.7.0",
|
|
55
|
-
"@applitools/generic": "^3.
|
|
55
|
+
"@applitools/generic": "^3.5.0",
|
|
56
56
|
"@applitools/test-utils": "^1.5.17",
|
|
57
57
|
"@types/nightwatch": "^2.3.25",
|
|
58
58
|
"@types/node": "^12.20.55",
|
|
59
|
-
"chromedriver": "^115.0.1",
|
|
60
59
|
"cucumber": "6.0.7",
|
|
61
|
-
"geckodriver": "^3.0.1",
|
|
62
60
|
"nightwatch": "^3.1.2"
|
|
63
61
|
},
|
|
64
62
|
"peerDependencies": {
|