Skip to content

Commit c0a3fae

Browse files
committed
fix os
1 parent 9a64539 commit c0a3fae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run-shell.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ async function runTests() {
132132
}
133133

134134
function testSetup() {
135-
sh("jsvu", [`--engines=${SHELL_NAME}`]);
135+
const jsvuOS = "mac64arm";
136+
sh("jsvu", [`--engines=${SHELL_NAME}`, `--os=${jsvuOS}`]);
136137
const shellBinary = path.join(os.homedir(), ".jsvu/bin", SHELL_NAME);
137138
if (!fs.existsSync(shellBinary))
138139
throw new Error(`Could not find shell binary: ${shellBinary}`);

0 commit comments

Comments
 (0)