You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a user may not have run the build command before on a freshly generated create-fuels project, perhaps this command should also include npm run build to ensure they don't run into any errors when running the ui tests.
"test:ui": "npm run build && sh ./test/ui/test-ui.sh"
After creating a new app with:
One can't run the UI tests via:
The same happens for
bun
andnpm
as well.Prepending
sh
to the script seems to fix the issue."test:ui": "sh ./test/ui/test-ui.sh"
The text was updated successfully, but these errors were encountered: