test: fix process.test.js (#20932)

This commit is contained in:
Meghan Denny
2025-07-09 22:02:43 -08:00
committed by GitHub
parent a1ef8f00ac
commit 72b5c0885a

View File

@@ -1144,6 +1144,6 @@ it.todoIf(isMacOS || isMusl)("should be the node version on the host that we exp
});
let [out, exited] = await Promise.all([new Response(subprocess.stdout).text(), subprocess.exited]);
expect(out.trim()).toEqual("v24.3.0");
expect(out.trim()).toEqual(isWindows ? "v24.3.0" : "v24.4.0"); // TODO: this *should* be v24.3.0 but scripts/bootstrap.sh needs to be enhanced to do so
expect(exited).toBe(0);
});