From 7788bf4c00a82ba5ba8a12859e0ebf3f1993d3a7 Mon Sep 17 00:00:00 2001 From: raide-eetu Date: Wed, 11 Feb 2026 15:17:02 +0200 Subject: [PATCH] fix: build debug version of the program We need --debug flag as we are searching built tauri program from the target/debug/ path --- v2/webdriver/selenium/test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/webdriver/selenium/test/test.js b/v2/webdriver/selenium/test/test.js index 3e966b2..2d744b8 100644 --- a/v2/webdriver/selenium/test/test.js +++ b/v2/webdriver/selenium/test/test.js @@ -31,7 +31,7 @@ before(async function () { this.timeout(120000); // ensure the program has been built - spawnSync("pnpm", ["tauri", "build", "--no-bundle"], { + spawnSync("pnpm", ["tauri", "build", "--debug", "--no-bundle"], { cwd: path.resolve(__dirname, "../../.."), stdio: "inherit", shell: true,