From f77bd8604fc422d2b2d3f58dcbb2fc77d70d81d8 Mon Sep 17 00:00:00 2001 From: HerozDotExe Date: Fri, 27 Mar 2026 11:09:38 +0100 Subject: [PATCH] test: use correct tags in tests --- tests/modloader-java.test.ts.template | 2 +- tests/modloader.test.ts.template | 2 +- tests/vanilla-java.test.ts.template | 2 +- tests/vanilla.test.ts.template | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/modloader-java.test.ts.template b/tests/modloader-java.test.ts.template index 3580669..665aedf 100644 --- a/tests/modloader-java.test.ts.template +++ b/tests/modloader-java.test.ts.template @@ -7,7 +7,7 @@ const gameRoot = path.join(import.meta.dirname, "..", "..", "temp"); // await fs.rm(gameRoot, { recursive: true, force: true }); // await fs.mkdir(gameRoot, { recursive: true }); -test("launch game", { timeout: 0, tags: ["full", "forge"] }, async () => { +test("launch game", { timeout: 0, tags: ["full", "modloader"] }, async () => { const javaManager = new RuntimeManager(path.join(gameRoot, "java")); javaManager.on("progress", console.log) // const java = await javaManager.use(await getJavaComponent("${version}")) diff --git a/tests/modloader.test.ts.template b/tests/modloader.test.ts.template index 6107482..e3e36d5 100644 --- a/tests/modloader.test.ts.template +++ b/tests/modloader.test.ts.template @@ -7,7 +7,7 @@ const gameRoot = path.join(import.meta.dirname, "..", "..", "temp"); // await fs.rm(gameRoot, { recursive: true, force: true }); // await fs.mkdir(gameRoot, { recursive: true }); -test("launch game", { timeout: 0, tags: ["full", "vanilla"] }, async () => { +test("launch game", { timeout: 0, tags: ["full", "modloader"] }, async () => { const javaManager = new RuntimeManager(path.join(gameRoot, "java")); javaManager.on("progress", console.log) const java = await javaManager.use(await getJavaComponent("${version}")) diff --git a/tests/vanilla-java.test.ts.template b/tests/vanilla-java.test.ts.template index 0a3750b..ad10e49 100644 --- a/tests/vanilla-java.test.ts.template +++ b/tests/vanilla-java.test.ts.template @@ -7,7 +7,7 @@ const gameRoot = path.join(import.meta.dirname, "..", "temp"); // await fs.rm(gameRoot, { recursive: true, force: true }); // await fs.mkdir(gameRoot, { recursive: true }); -test("launch game", { timeout: 0, tags: ["full", "forge"] }, async () => { +test("launch game", { timeout: 0, tags: ["full", "vanilla"] }, async () => { const javaManager = new RuntimeManager(path.join(gameRoot, "java")); javaManager.on("progress", console.log) // const java = await javaManager.use(await getJavaComponent("${version}")) diff --git a/tests/vanilla.test.ts.template b/tests/vanilla.test.ts.template index 33bb4d8..4f23338 100644 --- a/tests/vanilla.test.ts.template +++ b/tests/vanilla.test.ts.template @@ -7,7 +7,7 @@ const gameRoot = path.join(import.meta.dirname, "..", "temp"); // await fs.rm(gameRoot, { recursive: true, force: true }); // await fs.mkdir(gameRoot, { recursive: true }); -test("launch game", { timeout: 0, tags: ["full", "forge"] }, async () => { +test("launch game", { timeout: 0, tags: ["full", "vanilla"] }, async () => { const javaManager = new RuntimeManager(path.join(gameRoot, "java")); javaManager.on("progress", console.log) const java = await javaManager.use(await getJavaComponent("${version}"))