@applitools/eyes-storybook 3.29.1 → 3.29.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.
- package/CHANGELOG.md +7 -0
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 3.29.2 - 2022/7/14
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
- Allow configuration file to be loaded from ancestor directories
|
|
10
|
+
### Bug fixes
|
|
11
|
+
- Fixed bug where a failure in a single UFG environment fails all other environments in the same configuration
|
|
12
|
+
|
|
6
13
|
## 3.29.1 - 2022/6/16
|
|
7
14
|
|
|
8
15
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-storybook",
|
|
3
|
-
"version": "3.29.
|
|
3
|
+
"version": "3.29.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
16
|
"url": "git://github.com/applitools/eyes.sdk.javascript1.git",
|
|
17
|
-
"directory": "packages/eyes-storybook"
|
|
17
|
+
"directory": "js/packages/eyes-storybook"
|
|
18
18
|
},
|
|
19
19
|
"license": "SEE LICENSE IN LICENSE",
|
|
20
20
|
"author": "Applitools Team <team@applitools.com>",
|
|
@@ -34,10 +34,11 @@
|
|
|
34
34
|
"build": "rollup -c rollup.config.js",
|
|
35
35
|
"build:heavy": "node scripts/bitmap.js",
|
|
36
36
|
"test": "yarn build && yarn test:mocha && yarn lint",
|
|
37
|
-
"test:
|
|
37
|
+
"test:sanity": "yarn test:unit && yarn test:it",
|
|
38
38
|
"test:mocha": "yarn test:unit && yarn test:it && yarn test:e2e",
|
|
39
39
|
"test:unit": "mocha --no-timeouts --trace-warnings 'test/unit/*.test.js'",
|
|
40
40
|
"test:it": "mocha --no-timeouts --trace-warnings 'test/it/*.test.js'",
|
|
41
|
+
"test:versions": "yarn build && yarn test:e2e:versions && yarn lint",
|
|
41
42
|
"test:e2e": "mocha --no-timeouts --trace-warnings 'test/e2e/*.e2e.test.js'",
|
|
42
43
|
"test:e2e:versions": "npx mocha --no-timeouts --trace-warnings --require test/fixtures/storybook-versions/mochaHooks.js test/e2e/*.e2e.versions.test.js",
|
|
43
44
|
"test:e2e:versions_local": "STORYBOOK_VERSION=latest npx mocha --no-timeouts --trace-warnings --require test/fixtures/storybook-versions/mochaHooks.js test/e2e/*.e2e.versions.test.js",
|
|
@@ -69,15 +70,15 @@
|
|
|
69
70
|
}
|
|
70
71
|
},
|
|
71
72
|
"dependencies": {
|
|
72
|
-
"@applitools/driver": "1.9.
|
|
73
|
-
"@applitools/eyes-sdk-core": "13.8.
|
|
73
|
+
"@applitools/driver": "1.9.15",
|
|
74
|
+
"@applitools/eyes-sdk-core": "13.8.12",
|
|
74
75
|
"@applitools/functional-commons": "1.6.0",
|
|
75
|
-
"@applitools/logger": "1.1.
|
|
76
|
+
"@applitools/logger": "1.1.15",
|
|
76
77
|
"@applitools/monitoring-commons": "1.0.19",
|
|
77
|
-
"@applitools/spec-driver-puppeteer": "1.1.
|
|
78
|
-
"@applitools/test-server": "1.
|
|
79
|
-
"@applitools/utils": "1.3.
|
|
80
|
-
"@applitools/visual-grid-client": "15.
|
|
78
|
+
"@applitools/spec-driver-puppeteer": "1.1.6",
|
|
79
|
+
"@applitools/test-server": "1.1.4",
|
|
80
|
+
"@applitools/utils": "1.3.10",
|
|
81
|
+
"@applitools/visual-grid-client": "15.13.6",
|
|
81
82
|
"boxen": "4.2.0",
|
|
82
83
|
"chalk": "3.0.0",
|
|
83
84
|
"detect-port": "1.3.0",
|
|
@@ -89,9 +90,9 @@
|
|
|
89
90
|
"yargs": "15.4.1"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
|
-
"@applitools/bongo": "^2.1.
|
|
93
|
+
"@applitools/bongo": "^2.1.6",
|
|
93
94
|
"@applitools/scripts": "^1.1.0",
|
|
94
|
-
"@applitools/sdk-shared": "0.9.
|
|
95
|
+
"@applitools/sdk-shared": "0.9.13",
|
|
95
96
|
"@applitools/snaptdout": "^1.0.1",
|
|
96
97
|
"@storybook/addon-interactions": "^6.4.18",
|
|
97
98
|
"@storybook/react": "^6.4.18",
|