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