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
Right now, tests/setup/cow+fetch.ts handles creating a HTTP server. Since it is run for every test suite/file, it gracefully continues if the server is already running. Sometimes, there is a small amount of time when a server is not running but a test is, which causes it to fail.
This can be fixed by having the server run externally from the test suites, meaning only one server would run for all of them. The change will also have the tests running a lot faster.
The text was updated successfully, but these errors were encountered:
Right now,
tests/setup/cow+fetch.ts
handles creating a HTTP server. Since it is run for every test suite/file, it gracefully continues if the server is already running. Sometimes, there is a small amount of time when a server is not running but a test is, which causes it to fail.This can be fixed by having the server run externally from the test suites, meaning only one server would run for all of them. The change will also have the tests running a lot faster.
The text was updated successfully, but these errors were encountered: