mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 14:51:08 +00:00
13 lines
406 B
TypeScript
13 lines
406 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import projectsConfig from "../vitest.projects.config.ts";
|
|
|
|
describe("projects vitest config", () => {
|
|
it("defines named unit and boundary projects", () => {
|
|
expect(projectsConfig.test?.projects).toHaveLength(2);
|
|
expect(projectsConfig.test?.projects?.map((project) => project.test?.name)).toEqual([
|
|
"unit",
|
|
"boundary",
|
|
]);
|
|
});
|
|
});
|