Files
ai-solver-test/tests/test.spec.ts
dimkk 515ada565b
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
chore: add fake test for CI
2026-01-03 19:42:03 +03:00

5 lines
92 B
TypeScript

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