[tests] setup tests

This commit is contained in:
2023-06-27 21:35:04 +03:00
parent 5f22e1115f
commit 8f886d1336
3 changed files with 415 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
import { describe, it, expect } from "vitest";
describe("check test setup", () => {
it("ceck suit", () => {
expect(1).toBe(1);
});
});