From 515ada565be4587611549d5515785329b92159fd Mon Sep 17 00:00:00 2001 From: dimkk Date: Sat, 3 Jan 2026 19:42:03 +0300 Subject: [PATCH] chore: add fake test for CI --- tests/test.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/test.spec.ts diff --git a/tests/test.spec.ts b/tests/test.spec.ts new file mode 100644 index 0000000..6edbfde --- /dev/null +++ b/tests/test.spec.ts @@ -0,0 +1,5 @@ +import { expect, test } from "bun:test"; + +test("2 + 2", () => { + expect(2 + 2).toBe(4); +}); \ No newline at end of file