5 lines
96 B
TypeScript
5 lines
96 B
TypeScript
import { expect, test } from "vitest";
|
|
|
|
test("sanity", () => {
|
|
expect(true).toBeTruthy();
|
|
});
|