Skip to content

Commit

Permalink
Fix ports waited for in test
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Sep 24, 2022
1 parent 385a88d commit 38587ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/vue2.6/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"storybook": "start-storybook --port 6011",
"build-storybook": "build-storybook",
"preview-storybook": "http-server storybook-static --port 6011 --silent",
"test": "wait-on tcp:6009 && test-storybook --url 'http://localhost:6009'",
"test": "wait-on tcp:6011 && test-storybook --url 'http://localhost:6009'",
"test-ci": "run-p --race test preview-storybook"
},
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion examples/vue2.7/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"storybook": "start-storybook --port 6012",
"build-storybook": "build-storybook",
"preview-storybook": "http-server storybook-static --port 6012 --silent",
"test": "wait-on tcp:6009 && test-storybook --url 'http://localhost:6009'",
"test": "wait-on tcp:6012 && test-storybook --url 'http://localhost:6009'",
"test-ci": "run-p --race test preview-storybook"
},
"author": "",
Expand Down

0 comments on commit 38587ef

Please sign in to comment.