refactor: update test files to use bun:test and remove vitest configuration

This commit is contained in:
Arunavo Ray
2025-06-12 10:24:55 +05:30
parent 51de51baa0
commit 2eda800a7c
5 changed files with 70 additions and 60 deletions

View File

@@ -1,8 +1,8 @@
// example.test.ts
import { describe, it, expect } from "vitest";
import { describe, test, expect } from "bun:test";
describe("Example Test", () => {
it("should pass", () => {
test("should pass", () => {
expect(true).toBe(true);
});
});