mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 14:11:26 +00:00
14 lines
413 B
TypeScript
14 lines
413 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import baseConfig from "../vitest.config.ts";
|
|
|
|
describe("projects vitest config", () => {
|
|
it("defines unit, boundary, acp, and ui project config files at the root", () => {
|
|
expect(baseConfig.test?.projects).toEqual([
|
|
"vitest.unit.config.ts",
|
|
"vitest.boundary.config.ts",
|
|
"vitest.acp.config.ts",
|
|
"vitest.ui.config.ts",
|
|
]);
|
|
});
|
|
});
|