@applitools/eyes-playwright 1.22.0 → 1.22.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +8 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.22.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-playwright@1.22.1...js/eyes-playwright@1.22.2) (2023-10-25)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/tunnel-client bumped to 1.3.0
9
+ #### Features
10
+
11
+ * add more logs for tunnel worker ([60cf839](https://github.com/applitools/eyes.sdk.javascript1/commit/60cf839f23b214dff89ff4a9c59f231c96160daf))
12
+ * @applitools/ec-client bumped to 1.7.14
13
+
14
+ * @applitools/core bumped to 4.0.1
15
+
16
+ * @applitools/eyes bumped to 1.11.2
17
+
18
+
19
+ ## [1.22.1](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-playwright@1.22.0...js/eyes-playwright@1.22.1) (2023-10-19)
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * @applitools/spec-driver-playwright bumped to 1.3.30
25
+ #### Bug Fixes
26
+
27
+ * improve locator transformation to simple common selector ([#1981](https://github.com/applitools/eyes.sdk.javascript1/issues/1981)) ([579dedd](https://github.com/applitools/eyes.sdk.javascript1/commit/579dedd57304b2f2f2bd3a39bdead30bea7131f0))
28
+ * @applitools/eyes bumped to 1.11.1
29
+ #### Bug Fixes
30
+
31
+ * fixed `serverUrl` configuration propagation ([247b7d8](https://github.com/applitools/eyes.sdk.javascript1/commit/247b7d88853dd1a9068d2d963582ad795752ace4))
32
+
3
33
  ## [1.22.0](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-playwright-v1.21.1...js/eyes-playwright@1.22.0) (2023-10-17)
4
34
 
5
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-playwright",
3
- "version": "1.22.0",
3
+ "version": "1.22.2",
4
4
  "description": "Applitools Eyes SDK for Playwright",
5
5
  "keywords": [
6
6
  "eyes-playwright",
@@ -30,12 +30,14 @@
30
30
  "build": "run --top-level tspc --project ./tsconfig.build.json",
31
31
  "generate:tests": "NODE_OPTIONS='--experimental-import-meta-resolve --experimental-loader=@applitools/generic/dist/code-loader.js' generic ./test/generic/config.mjs",
32
32
  "test": "yarn test:coverage",
33
- "test:coverage": "APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-playwright' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
34
- "up:framework": "yarn add --dev --caret playwright${APPLITOOLS_FRAMEWORK_VERSION:+@$APPLITOOLS_FRAMEWORK_VERSION}"
33
+ "test:coverage": "APPLITOOLS_SHOW_LOGS=true APPLITOOLS_LOG_FILE=\"./logs/$(uuidgen).log\" APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-playwright' APPLITOOLS_BATCH_ID=$(uuidgen) MOCHA_GROUP=coverage run --top-level mocha './test/generated-coverage/*.spec.js' --parallel --jobs ${MOCHA_JOBS:-15} --exit",
34
+ "setup": "run playwright:setup",
35
+ "playwright:setup": "yarn playwright install --with-deps chromium firefox webkit",
36
+ "up:framework": "echo \"$(jq '.devDependencies.playwright = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
35
37
  },
36
38
  "dependencies": {
37
- "@applitools/eyes": "1.11.0",
38
- "@applitools/spec-driver-playwright": "1.3.29"
39
+ "@applitools/eyes": "1.11.2",
40
+ "@applitools/spec-driver-playwright": "1.3.30"
39
41
  },
40
42
  "devDependencies": {
41
43
  "@applitools/api-extractor": "^1.2.22",
@@ -43,7 +45,7 @@
43
45
  "@applitools/generic": "^3.4.1",
44
46
  "@applitools/test-utils": "^1.5.17",
45
47
  "@types/node": "^12.20.55",
46
- "playwright": "^1.37.0"
48
+ "playwright": "^1.39.0"
47
49
  },
48
50
  "peerDependencies": {
49
51
  "playwright": ">=1.0.0"