Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: execute eyes-storybook-in-ci-only #2473

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/odyssey-storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"directory": "packages/odyssey-storybook"
},
"devDependencies": {
"@applitools/eyes-storybook": "^3.53.1",
"@babel/core": "^7.23.9",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
Expand Down Expand Up @@ -63,15 +62,16 @@
"scripts": {
"build": "storybook build --output-dir dist",
"ci:coverage": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,INTERACTION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn test-storybook --coverage --browsers chromium --ci\"",
"ci:eyesStorybook": "yarn dlx @applitools/eyes-storybook@^3.53.1",
"ci:interactionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,INTERACTION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn test-storybook --browsers chromium --ci\"",
"ci:server": "http-server dist --port 6006 --silent",
"ci:visualRegressionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,VISUAL-REGRESSION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn eyes-storybook --conf ./applitools.config.cjs -u http://127.0.0.1:6006\"",
"ci:visualRegressionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,VISUAL-REGRESSION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn ci:eyesStorybook --conf ./applitools.config.cjs -u http://127.0.0.1:6006\"",
"dev:coverage": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,INTERACTION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn test-storybook --url http://127.0.0.1:6006\" --coverage",
"dev:interactionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,INTERACTION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn test-storybook --url http://127.0.0.1:6006\"",
"dev:server": "http-server dist --port 6006",
"dev:storybook": "storybook dev -p 6006",
"dev:types": "tsc --build --noEmit --watch",
"dev:visualRegressionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,VISUAL-REGRESSION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn eyes-storybook --conf ./applitools.config.cjs -u http://127.0.0.1:6006\"",
"dev:visualRegressionTest": "yarn build && yarn concurrently --kill-others --success first --names \"STORYBOOK-SERVER,VISUAL-REGRESSION-TEST\" --prefix-colors \"magenta,green\" npm:ci:server \"wait-on tcp:127.0.0.1:6006 && yarn ci:eyesStorybook --conf ./applitools.config.cjs -u http://127.0.0.1:6006\"",
"prepack": "yarn build",
"start": "storybook dev -p 6006",
"typecheck": "tsc --noEmit"
Expand Down
Loading