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