8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
import { describe, it, expect } from "vitest";
|
|
|
|
describe("cli", () => {
|
|
it("should have a working environment", () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|