mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 13:01:25 +00:00
fix(ci): stabilize windows paths
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { EventEmitter } from "node:events";
|
||||
import path from "node:path";
|
||||
import { Readable } from "node:stream";
|
||||
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||||
import type { ClawdbotConfig } from "../config/config.js";
|
||||
@@ -349,7 +350,9 @@ describe("Agent-specific sandbox config", () => {
|
||||
});
|
||||
|
||||
expect(context).toBeDefined();
|
||||
expect(context?.workspaceDir).toContain("/tmp/isolated-sandboxes");
|
||||
expect(context?.workspaceDir).toContain(
|
||||
path.resolve("/tmp/isolated-sandboxes"),
|
||||
);
|
||||
});
|
||||
|
||||
it("should prefer agent config over global for multiple agents", async () => {
|
||||
|
||||
Reference in New Issue
Block a user