From 333bcef4a58d16eb5a8940e9d08d32caa9db4480 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 22 Jun 2025 11:25:31 +0200 Subject: initial commit --- src/demo.spec.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/demo.spec.ts (limited to 'src/demo.spec.ts') diff --git a/src/demo.spec.ts b/src/demo.spec.ts new file mode 100644 index 0000000..e07cbbd --- /dev/null +++ b/src/demo.spec.ts @@ -0,0 +1,7 @@ +import { describe, it, expect } from 'vitest'; + +describe('sum test', () => { + it('adds 1 + 2 to equal 3', () => { + expect(1 + 2).toBe(3); + }); +}); -- cgit v1.2.3