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
Summary
The test runner we're using can't run in watch mode since it requires a build to run the tests, and isn't configured to re-build when it re-runs tests. This means that it's basically pointless to run in test-watching mode. Also this means you can't simply run the test command through npx, and instead you need to make sure to build the application so the test runner can run the newest compiled version of the application.
Other information (e.g. detailed explanation, stack traces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
Let's either configure the test runner to compile automatically every time it's run, or if that's not possible or too difficult, see about switching to another test runner.
The text was updated successfully, but these errors were encountered:
Summary
The test runner we're using can't run in watch mode since it requires a build to run the tests, and isn't configured to re-build when it re-runs tests. This means that it's basically pointless to run in test-watching mode. Also this means you can't simply run the test command through
npx
, and instead you need to make sure to build the application so the test runner can run the newest compiled version of the application.Other information (e.g. detailed explanation, stack traces, related issues, suggestions how to fix, links for us to have context, eg. StackOverflow, personal fork, etc.)
Let's either configure the test runner to compile automatically every time it's run, or if that's not possible or too difficult, see about switching to another test runner.
The text was updated successfully, but these errors were encountered: