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
I typically have a missing test/tmp.0/ when running the test suite, failing
test/parallel/test-async-wrap-check-providers.js
since this is the first one to use it.
Calling common.refreshTmpDir(); before first use of common.PIPE is enough;
but i suppose it'd be better to call it everywhere it is used.
The text was updated successfully, but these errors were encountered:
common.PIPE resides in the temp directory (except on Windows). Insure
that the temp directory is refreshed in tests that use common.PIPE.
Fixes: nodejs#3227
common.PIPE resides in the temp directory (except on Windows). Insure
that the temp directory is refreshed in tests that use common.PIPE.
PR-URL: #3231Fixes: #3227
Reviewed-By: Johan Bergström <[email protected]>
I typically have a missing
test/tmp.0/
when running the test suite, failingtest/parallel/test-async-wrap-check-providers.js
since this is the first one to use it.
Calling
common.refreshTmpDir();
before first use ofcommon.PIPE
is enough;but i suppose it'd be better to call it everywhere it is used.
The text was updated successfully, but these errors were encountered: