mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
test: fix process.test.js (#20932)
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user