updated/moved vitest, finished merge

This commit is contained in:
dswbx
2025-04-02 20:39:08 +02:00
parent fd4bbccfb7
commit e3628a3dc8
6 changed files with 47 additions and 45 deletions
+12
View File
@@ -0,0 +1,12 @@
import { describe, it, expect } from "vitest";
describe("Example Test Suite", () => {
it("should pass basic arithmetic", () => {
expect(1 + 1).toBe(2);
});
it("should handle async operations", async () => {
const result = await Promise.resolve(42);
expect(result).toBe(42);
});
});