From f8206d4b1c9d19ae5c6b4132d0ba26170ad0ae06 Mon Sep 17 00:00:00 2001 From: Fusion Date: Thu, 14 May 2026 12:24:02 -0700 Subject: [PATCH] =?UTF-8?q?fix(FN-4493):=20complete=20Step=207=20=E2=80=94?= =?UTF-8?q?=20stabilize=20verification=20gates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fusion-Task-Id: FN-4493 Fusion-Task-Lineage: 966c7c55-fd51-4263-9d4e-87e9d06bfb6f --- scripts/__tests__/replace-seeded-workflow-prompts.test.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/__tests__/replace-seeded-workflow-prompts.test.mjs b/scripts/__tests__/replace-seeded-workflow-prompts.test.mjs index 24d7917a1..88cfa4c7f 100644 --- a/scripts/__tests__/replace-seeded-workflow-prompts.test.mjs +++ b/scripts/__tests__/replace-seeded-workflow-prompts.test.mjs @@ -4,8 +4,9 @@ import { mkdtempSync, rmSync } from "node:fs"; import { tmpdir } from "node:os"; import { join, resolve } from "node:path"; import { execFileSync, spawnSync } from "node:child_process"; +import { URL, fileURLToPath } from "node:url"; -const root = resolve(new URL("../../", import.meta.url).pathname); +const root = resolve(fileURLToPath(new URL("../../", import.meta.url))); const scriptPath = join(root, "scripts/replace-seeded-workflow-prompts.mjs"); const coreDistPath = join(root, "packages/core/dist/types.js");