chore: add fake test for CI
All checks were successful
Bun CI/CD / test (push) Successful in 8s
Bun CI/CD / deploy-prod (push) Successful in 1s
Bun CI/CD / deploy-staging (push) Has been skipped

This commit is contained in:
2026-01-03 19:42:03 +03:00
parent 906aaa51f9
commit 515ada565b

5
tests/test.spec.ts Normal file
View File

@@ -0,0 +1,5 @@
import { expect, test } from "bun:test";
test("2 + 2", () => {
expect(2 + 2).toBe(4);
});