mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-29 10:02:04 +00:00
9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import baseConfig, { rootVitestProjects } from "../vitest.config.ts";
|
|
|
|
describe("projects vitest config", () => {
|
|
it("defines the native root project list for all non-live Vitest lanes", () => {
|
|
expect(baseConfig.test?.projects).toEqual([...rootVitestProjects]);
|
|
});
|
|
});
|