test: implement tests
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// Use global test functions without importing vitest
|
||||
test("basic math", () => {
|
||||
expect(2 + 2).toBe(4);
|
||||
});
|
||||
|
||||
test("string equality", () => {
|
||||
expect("hello").toBe("hello");
|
||||
});
|
||||
Reference in New Issue
Block a user