Skip to content

Commit 65b64cf

Browse files
StefanStojanovictargos
authored andcommittedJun 1, 2024
test: fix Windows native test suites
2 PRs that landed independently caused this issue which makes every native suites run in CI fail on Windows. This is just a quick patch to unblock the CI. Refs: #52905 Refs: #52646 PR-URL: #53173 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
1 parent afbfe89 commit 65b64cf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎test/embedding/test-embedding.js

+6
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,12 @@ for (const extraSnapshotArgs of [
152152
{ cwd: tmpdir.path });
153153
}
154154

155+
// Skipping rest of the test on Windows because it fails in the CI
156+
// TODO(StefanStojanovic): Reenable rest of the test after fixing it
157+
if (common.isWindows) {
158+
return;
159+
}
160+
155161
// Guarantee NODE_REPL_EXTERNAL_MODULE won't bypass kDisableNodeOptionsEnv
156162
{
157163
spawnSyncAndExit(

0 commit comments

Comments
 (0)
Please sign in to comment.