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