Skip to content

Commit

Permalink
test(jrt): use a later JRT version for testing
Browse files Browse the repository at this point in the history
- Previous component for testing is not present on macOS arm64 builds.
  • Loading branch information
skjsjhb committed Jan 1, 2025
1 parent 055a537 commit 2ae249e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/instrumented/jrt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import fs from "fs-extra";

export async function checkInstallJRT() {
await iTest.run("Install JRT", async () => {
await jrt.installRuntime("java-runtime-alpha");
const bin = jrt.executable("java-runtime-alpha");
await jrt.installRuntime("java-runtime-gamma");
const bin = jrt.executable("java-runtime-gamma");
const proc = child_process.spawn(bin, ["-version"], { stdio: "inherit" });

assert((await fs.stat(bin)).isFile());
Expand Down

0 comments on commit 2ae249e

Please sign in to comment.