Skip to content

Commit ec8ef56

Browse files
committed
Pin to working version of eshost for test-all-js-engines
test-all-js-engines uses the latest published eshost version. It seems that version 8.0.0 is broken. test-all-js-engines used to report an error for the following JavaScript code, but doesn't any more: if (true) Version 7.6.0 seems to work better. Use that working version.
1 parent 6c91c2f commit ec8ef56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/test-all-js-engines

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ main() {
2323

2424
install_tools() {
2525
if ! [ -f "${node_bin}/eshost" -a -f "${node_bin}/jsvu" ]; then
26-
printf '%s\n' '{"dependencies": {"eshost-cli": "*", "jsvu": "*"}}' >"${HOME}/package.json"
26+
printf '%s\n' '{"dependencies": {"eshost-cli": "7.6.0", "jsvu": "*"}}' >"${HOME}/package.json"
2727
(cd "${HOME}" && npm install --no-audit --no-optional --no-package-lock)
2828
fi
2929
}

0 commit comments

Comments
 (0)