8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
describe("example unit test", () => {
|
|
it("should pass", () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
});
|