@applitools/screenshoter 3.7.29 → 3.7.30
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/package.json +14 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/screenshoter",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.30",
|
|
4
4
|
"description": "Applitools universal screenshoter for web and native applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
"scripts": {
|
|
44
44
|
"lint": "eslint . --ext .js",
|
|
45
45
|
"test": "yarn test:it && yarn test:e2e",
|
|
46
|
+
"test:unit": "MOCHA_GROUP=unit node ../../node_modules/.bin/mocha ./test/unit/*.spec.js",
|
|
47
|
+
"test:it": "MOCHA_GROUP=it node ../../node_modules/.bin/mocha ./test/it/*.spec.js",
|
|
48
|
+
"test:e2e": "yarn test:e2e:web && yarn test:e2e:android && yarn test:e2e:ios",
|
|
49
|
+
"test:e2e:web": "MOCHA_GROUP=web node ../../node_modules/.bin/mocha ./test/e2e/web/*.spec.js -r @applitools/test-utils/mocha-hooks/docker",
|
|
50
|
+
"test:e2e:android": "APPLITOOLS_TEST_REMOTE=sauce MOCHA_GROUP=android node ../../node_modules/.bin/mocha ./test/e2e/android*/*.spec.js --parallel --jobs ${MOCHA_JOBS:-3}",
|
|
51
|
+
"test:e2e:ios": "APPLITOOLS_TEST_REMOTE=sauce MOCHA_GROUP=ios node ../../node_modules/.bin/mocha ./test/e2e/ios*/*.spec.js --parallel --jobs ${MOCHA_JOBS:-4}",
|
|
46
52
|
"test:sanity": "yarn test:unit && yarn test:it && yarn test:e2e:web",
|
|
47
|
-
"test:unit": "mocha ./test/unit/*.spec.js --no-timeouts",
|
|
48
|
-
"test:it": "mocha ./test/it/*.spec.js --no-timeouts",
|
|
49
|
-
"test:e2e": "yarn test:e2e:web && yarn && yarn test:e2e:android && yarn test:e2e:ios",
|
|
50
|
-
"test:e2e:web": "mocha ./test/e2e/web/*.spec.js --no-timeouts -r @applitools/test-utils/mocha-hooks/docker",
|
|
51
|
-
"test:e2e:android": "APPLITOOLS_TEST_REMOTE=sauce mocha ./test/e2e/android*/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-3}",
|
|
52
|
-
"test:e2e:ios": "APPLITOOLS_TEST_REMOTE=sauce mocha ./test/e2e/ios*/*.spec.js --no-timeouts --parallel --jobs ${MOCHA_JOBS:-4}",
|
|
53
53
|
"setup": "yarn setup:web",
|
|
54
54
|
"setup:web": "yarn docker:setup",
|
|
55
55
|
"setup:android": "echo \"setup:android - do nothing\"",
|
|
@@ -67,25 +67,24 @@
|
|
|
67
67
|
"postversion": "bongo postversion --skip-release-notification"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@applitools/image": "1.0.
|
|
71
|
-
"@applitools/logger": "1.1.
|
|
72
|
-
"@applitools/snippets": "2.4.
|
|
73
|
-
"@applitools/utils": "1.3.
|
|
70
|
+
"@applitools/image": "1.0.27",
|
|
71
|
+
"@applitools/logger": "1.1.47",
|
|
72
|
+
"@applitools/snippets": "2.4.16",
|
|
73
|
+
"@applitools/utils": "1.3.31",
|
|
74
74
|
"jpeg-js": "0.4.4",
|
|
75
75
|
"png-async": "0.9.4"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@applitools/bongo": "^2.2.5",
|
|
79
|
-
"@applitools/driver": "^1.11.
|
|
80
|
-
"@applitools/spec-driver-webdriverio": "^1.4.
|
|
81
|
-
"@applitools/test-utils": "^1.5.
|
|
79
|
+
"@applitools/driver": "^1.11.36",
|
|
80
|
+
"@applitools/spec-driver-webdriverio": "^1.4.31",
|
|
81
|
+
"@applitools/test-utils": "^1.5.13",
|
|
82
82
|
"appium": "^1.22.3",
|
|
83
83
|
"chromedriver": "^101.0.0",
|
|
84
84
|
"eslint": "^8.16.0",
|
|
85
85
|
"eslint-plugin-mocha-no-only": "^1.1.1",
|
|
86
86
|
"eslint-plugin-node": "^11.1.0",
|
|
87
87
|
"eslint-plugin-prettier": "^4.0.0",
|
|
88
|
-
"mocha": "^10.0.0",
|
|
89
88
|
"pixelmatch": "^5.3.0",
|
|
90
89
|
"prettier": "2.6.2",
|
|
91
90
|
"webdriverio": "^7.19.7"
|