diff options
author | rtkay123 <dev@kanjala.com> | 2025-06-22 11:25:31 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-06-22 11:25:31 +0200 |
commit | 333bcef4a58d16eb5a8940e9d08d32caa9db4480 (patch) | |
tree | 1e81da403c189af6d0e5b800d2ccfb105c209792 /src/demo.spec.ts | |
download | kanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.tar.bz2 kanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.zip |
Diffstat (limited to 'src/demo.spec.ts')
-rw-r--r-- | src/demo.spec.ts | 7 |
1 files changed, 7 insertions, 0 deletions
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); + }); +}); |