-
I have a really simple setup with one test. My wallaby config is all the default set up exactly like the README says. My phoenix app is an absinthe graphql api, and I serve my react front-end from a controller behind the catch-all route. Here's an example test:
It works great on my local Mac. It visits On Github Actions, when I print the html after Any idea what might be going on? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
can you confirm that in CI you have part of your build steps (either a mix alias or just a step in GHA) that bundles/builds your JS assets? often people find it working locally because you still have your assets built from running it in dev, but on CI, it starts completely fresh each time. |
Beta Was this translation helpful? Give feedback.
can you confirm that in CI you have part of your build steps (either a mix alias or just a step in GHA) that bundles/builds your JS assets?
often people find it working locally because you still have your assets built from running it in dev, but on CI, it starts completely fresh each time.