@applitools/screenshoter 3.3.5 → 3.3.6

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 +5 -0
  2. package/package.json +15 -11
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@
4
4
  ## Unreleased
5
5
 
6
6
 
7
+ ## 3.3.6 - 2022/2/9
8
+
9
+ - fix testing
10
+ - updated to @applitools/utils@1.2.12 (from 1.2.11)
11
+
7
12
  ## 3.3.5 - 2022/2/8
8
13
 
9
14
  - add "files" field to the package.json to avoid unnecessary files to be published
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/screenshoter",
3
- "version": "3.3.5",
3
+ "version": "3.3.6",
4
4
  "description": "Applitools universal screenshoter for web and native applications",
5
5
  "keywords": [
6
6
  "applitools",
@@ -32,19 +32,23 @@
32
32
  ],
33
33
  "scripts": {
34
34
  "lint": "eslint . --ext .js",
35
- "test": "yarn test:it && yarn test:e2e:ios",
35
+ "test": "yarn test:it && yarn test:e2e",
36
36
  "test:it": "mocha ./test/it/*.spec.js --no-timeouts",
37
37
  "test:e2e": "mocha ./test/e2e/**/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-1}",
38
- "test:e2e:android": "mocha ./test/e2e/android/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-1}",
39
- "test:e2e:ios": "mocha ./test/e2e/ios/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-1}",
40
- "setup": "mkdir -p ./logs && yarn ios:setup && yarn appium:setup",
38
+ "test:e2e:web": "mocha ./test/e2e/web/*.spec.js --no-timeouts -r @applitools/test-utils/mocha-hooks/docker --parallel --jobs ${MOCHA_JOBS:-15}",
39
+ "test:e2e:android": "mocha ./test/e2e/android*/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-1}",
40
+ "test:e2e:ios": "mocha ./test/e2e/ios*/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-1}",
41
+ "setup": "yarn docker:setup && yarn android:setup && yarn ios:setup && yarn appium:setup",
42
+ "setup:web": "yarn docker:setup",
43
+ "setup:android": "yarn android:setup && yarn appium:setup",
44
+ "setup:ios": "yarn ios:setup && yarn appium:setup",
41
45
  "android:setup": "node ./scripts/android-emulator.js",
42
- "ios:setup": "node ./scripts/ios-simulator.js",
43
- "appium:setup": "appium --address 127.0.0.1 --port 4723 --base-path /wd/hub --log-level error:info --log ./logs/appium.log &",
44
46
  "docker:setup": "node ../scripts/scripts/generate-docker-compose-config.js && docker-compose up -d",
45
47
  "docker:teardown": "docker-compose down",
48
+ "ios:setup": "node ./scripts/ios-simulator.js",
49
+ "appium:setup": "mkdir -p ./logs && appium --address 127.0.0.1 --port 4723 --base-path /wd/hub --log-level error:info --log ./logs/appium.log &",
46
50
  "deps": "bongo deps",
47
- "gh:publish": "gh workflow run publish.yml --ref $(git rev-parse --abbrev-ref HEAD) -f packages=screenshoter",
51
+ "gh:publish": "gh workflow run publish-screenshoter.yml --ref $(git rev-parse --abbrev-ref HEAD)",
48
52
  "preversion": "bongo preversion",
49
53
  "version": "bongo version",
50
54
  "postversion": "bongo postversion --skip-release-notification"
@@ -56,13 +60,13 @@
56
60
  },
57
61
  "dependencies": {
58
62
  "@applitools/snippets": "2.1.12",
59
- "@applitools/utils": "1.2.11",
63
+ "@applitools/utils": "1.2.12",
60
64
  "png-async": "0.9.4"
61
65
  },
62
66
  "devDependencies": {
63
- "@applitools/driver": "1.4.10",
67
+ "@applitools/driver": "1.4.12",
64
68
  "@applitools/sdk-release-kit": "0.13.11",
65
- "@applitools/spec-driver-webdriverio": "1.2.6",
69
+ "@applitools/spec-driver-webdriverio": "1.2.7",
66
70
  "@applitools/test-utils": "1.0.11",
67
71
  "appium": "^1.22.2",
68
72
  "chromedriver": "^95.0.0",