Files
dev-puppeteer/tests/workspace-smoke.test.ts
2026-05-09 22:22:13 +09:00

8 lines
180 B
TypeScript

import { describe, expect, it } from "vitest";
describe("workspace smoke", () => {
it("runs the root Vitest workspace", () => {
expect("devflow").toBe("devflow");
});
});