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
{{ message }}
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
The steps in DEVELOP.md miss one thing. At the end, before eventually running yarn test, for yarn test to work, one must put
this line over the scripts.test line in package.json:
"test": "razzle test --env=jsdom --passWithNoTests --watchAll",
This line previously was:
"test": "razzle test --env=jsdom --passWithNoTests",
The new thing is --watchAll, without which this error shows up when running yarn test:
Determining test suites to run...
--watch is not supported without git/hg, please use --watchAll
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
The text was updated successfully, but these errors were encountered:
The steps in DEVELOP.md miss one thing. At the end, before eventually running
yarn test
, foryarn test
to work, one must putthis line over the
scripts.test
line in package.json:This line previously was:
The new thing is
--watchAll
, without which this error shows up when runningyarn test
:The text was updated successfully, but these errors were encountered: