Skip to content

Commit 81fe719

Browse files
committed
Fix sandbox tooling test routing expectation
1 parent 129fd6e commit 81fe719

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/scripts/test-projects.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,10 +618,10 @@ describe("test-projects args", () => {
618618

619619
const firstEnv = specs[0]?.env;
620620
expect(firstEnv?.KEEP_ME).toBe("1");
621-
expect(firstEnv?.OPENCLAW_VITEST_FS_MODULE_CACHE_PATH).toBe(
621+
expect(firstEnv?.OPENCLAW_VITEST_FS_MODULE_CACHE_PATH?.replaceAll("\\", "/")).toBe(
622622
"/repo/node_modules/.experimental-vitest-cache/0-test-vitest-vitest.gateway.config.ts",
623623
);
624-
expect(specs[1]?.env.OPENCLAW_VITEST_FS_MODULE_CACHE_PATH).toBe(
624+
expect(specs[1]?.env.OPENCLAW_VITEST_FS_MODULE_CACHE_PATH?.replaceAll("\\", "/")).toBe(
625625
"/repo/node_modules/.experimental-vitest-cache/1-test-vitest-vitest.gateway-server.config.ts",
626626
);
627627
});

0 commit comments

Comments
 (0)