Skip to content

Commit 169b0f8

Browse files
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
1 parent ff659fa commit 169b0f8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/embedding/test-embedding.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ for (const extraSnapshotArgs of [
152152
{ cwd: tmpdir.path });
153153
}
154154

155+
if (common.isWindows) {
156+
return;
157+
}
158+
155159
// Guarantee NODE_REPL_EXTERNAL_MODULE won't bypass kDisableNodeOptionsEnv
156160
{
157161
spawnSyncAndExit(

0 commit comments

Comments
 (0)