Skip to content

Commit a3c2c2a

Browse files
committed
feat: add initial test setup with Vitest for demo purposes
1 parent 92f236c commit a3c2c2a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import "reflect-metadata";
2+
import {describe, expect, it} from "vitest";
3+
4+
describe("Demo test", () => {
5+
it("Demo test", () => {
6+
expect(true).toEqual(true)
7+
});
8+
});

0 commit comments

Comments
 (0)