@applitools/eyes-storybook 3.44.0 → 3.44.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 +29 -0
- package/package.json +7 -6
- package/src/concurrencyMsg.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.44.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-storybook@3.44.1...js/eyes-storybook@3.44.2) (2023-10-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* docs for eyes setup and concurrency message output ([#1953](https://github.com/applitools/eyes.sdk.javascript1/issues/1953)) ([13704da](https://github.com/applitools/eyes.sdk.javascript1/commit/13704dac39fa899c5e8bdb268539cd46aee5ccfb))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/core bumped to 4.0.2
|
|
14
|
+
#### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* 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))
|
|
17
|
+
|
|
18
|
+
## [3.44.1](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-storybook@3.44.0...js/eyes-storybook@3.44.1) (2023-10-25)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* @applitools/tunnel-client bumped to 1.3.0
|
|
24
|
+
#### Features
|
|
25
|
+
|
|
26
|
+
* add more logs for tunnel worker ([60cf839](https://github.com/applitools/eyes.sdk.javascript1/commit/60cf839f23b214dff89ff4a9c59f231c96160daf))
|
|
27
|
+
* @applitools/ec-client bumped to 1.7.14
|
|
28
|
+
|
|
29
|
+
* @applitools/core bumped to 4.0.1
|
|
30
|
+
|
|
31
|
+
|
|
3
32
|
## [3.44.0](https://github.com/applitools/eyes.sdk.javascript1/compare/js/eyes-storybook-v3.43.3...js/eyes-storybook@3.44.0) (2023-10-17)
|
|
4
33
|
|
|
5
34
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-storybook",
|
|
3
|
-
"version": "3.44.
|
|
3
|
+
"version": "3.44.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"test:mocha": "run --top-level mocha --no-timeouts --trace-warnings 'test/{unit,it,e2e}/*.test.js'",
|
|
29
29
|
"test:unit": "run --top-level mocha --no-timeouts --trace-warnings 'test/unit/*.test.js'",
|
|
30
30
|
"test:it": "run --top-level mocha --no-timeouts --trace-warnings 'test/it/*.test.js'",
|
|
31
|
-
"test:versions": "
|
|
32
|
-
"test:e2e": "run --top-level mocha --no-timeouts --trace-warnings 'test/e2e/*.e2e.test.js'",
|
|
33
|
-
"test:e2e:versions": "
|
|
31
|
+
"test:versions": "yarn build && yarn test:e2e:versions && yarn lint",
|
|
32
|
+
"test:e2e": "MOCHA_GROUP=e2e run --top-level mocha --no-timeouts --trace-warnings 'test/e2e/*.e2e.test.js'",
|
|
33
|
+
"test:e2e:versions": "MOCHA_GROUP=e2e_versions run --top-level mocha --no-timeouts --trace-warnings test/versions/*.e2e.versions.test.js",
|
|
34
34
|
"test:e2e:versions_local": "APPLITOOLS_FRAMEWORK_VERSION=latest npx mocha --no-timeouts --trace-warnings --require test/fixtures/storybook-versions/mochaHooks.js test/versions/*.e2e.versions.test.js",
|
|
35
35
|
"test:heavy": "node bin/eyes-storybook.js -f test/fixtures/heavyStorybook/applitools.config.js",
|
|
36
36
|
"storybook": "start-storybook -c test/fixtures/appWithStorybook -p 9001 -s test/fixtures",
|
|
@@ -50,10 +50,11 @@
|
|
|
50
50
|
"changelog": "git changelog -x -p -f v$npm_package_version > History.md && git add ./History.md && git commit -am 'changelog'",
|
|
51
51
|
"changelog:init": "git config changelog.format \"* %s [[%h]($(echo $npm_package_repository_url|cut -d+ -f2|cut -d. -f1-2)/commit/%H)]\"",
|
|
52
52
|
"changelog:install": "sudo apt-get install git-extras",
|
|
53
|
-
"postinstall": "node src/postinstall"
|
|
53
|
+
"postinstall": "node src/postinstall",
|
|
54
|
+
"up:framework": "yarn add --dev --caret @storybook/react${APPLITOOLS_FRAMEWORK_VERSION:+@$APPLITOOLS_FRAMEWORK_VERSION}"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
56
|
-
"@applitools/core": "4.0.
|
|
57
|
+
"@applitools/core": "4.0.2",
|
|
57
58
|
"@applitools/driver": "1.14.4",
|
|
58
59
|
"@applitools/functional-commons": "1.6.0",
|
|
59
60
|
"@applitools/logger": "2.0.12",
|
package/src/concurrencyMsg.js
CHANGED
|
@@ -4,6 +4,6 @@ const chalk = require('chalk');
|
|
|
4
4
|
module.exports = chalk.yellow(`
|
|
5
5
|
Important notice: Your Applitools visual tests are currently running with a concurrency value of 5.
|
|
6
6
|
This means that only up to 5 visual tests can run in parallel, and therefore the execution might be slower.
|
|
7
|
-
If your Applitools license supports a higher concurrency level,
|
|
7
|
+
If your Applitools license supports a higher concurrency level, set the "testConcurrency" parameter as explained here: https://applitools.com/docs/api-ref/sdk-api/storybook/config.
|
|
8
8
|
Need a higher concurrency in your account? Email us @ sdr@applitools.com with your required concurrency level.
|
|
9
9
|
`);
|