Spaces:
Running
Running
File size: 143 Bytes
8521cd6 | 1 2 3 4 5 6 7 8 | import { describe, it, expect } from "vitest";
describe("example", () => {
it("should pass", () => {
expect(true).toBe(true);
});
});
|