Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Run storybook tests with playwright #249
Run storybook tests with playwright #249
Changes from 31 commits
1ff6f82
9ebd4f7
bc30d9a
261c2f9
fc0438e
9740619
f94d96d
19b6a5a
6baa92d
f769587
cc94a2d
3c1c60c
fabdd8b
74eec1b
567f55a
534223c
70ae3e9
26325c7
2ee44c3
f11d4a8
209ee88
0b6bc26
f17f4aa
3c40e40
da6c75d
117f9e0
d3091ea
5aa5891
9838d6a
7e9708f
a211bc4
56e193e
e493d19
bbe040f
0c7e9e9
04917d1
49219dd
210379a
9c53f42
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There could be some downsides of running the tests inside the Docker image build process vs at container runtime. It seems safer to run via the
CMD
(orENTRYPOINT
)... then, if we're using this image locally, we don't need to rebuild it when we rerun the tests.Could these be defined in the package.json instead, so we can also run them on our local dev machine?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@danielnaab - changes made. It's ready for you to take a look again. I created a bash script to help run the docker commands during local development that mounts a volume from the host machine so you can run it locally. I opted to keep this out of package.json because it's outside of the node ecosystem due to its dependency on Docker.