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