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
std/http/file_server tests are currently flaky. One reason this may be happening is that each of these tests opens a new process and makes fetch() calls. However, such network calls and new processes are not needed. Instead, we can use something like const res = await serveDir(req). This would be a far more straightforward method of testing.
The text was updated successfully, but these errors were encountered:
std/http/file_server
tests are currently flaky. One reason this may be happening is that each of these tests opens a new process and makesfetch()
calls. However, such network calls and new processes are not needed. Instead, we can use something likeconst res = await serveDir(req)
. This would be a far more straightforward method of testing.The text was updated successfully, but these errors were encountered: