test: implement tests

This commit is contained in:
2026-02-05 04:09:47 +05:00
parent 150975faf9
commit 0c3c97914e
10 changed files with 4395 additions and 1957 deletions
+8
View File
@@ -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");
});