aboutsummaryrefslogtreecommitdiffstats
path: root/src/demo.spec.ts
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-06-22 11:25:31 +0200
committerrtkay123 <dev@kanjala.com>2025-06-22 11:25:31 +0200
commit333bcef4a58d16eb5a8940e9d08d32caa9db4480 (patch)
tree1e81da403c189af6d0e5b800d2ccfb105c209792 /src/demo.spec.ts
downloadkanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.tar.bz2
kanjala.com-333bcef4a58d16eb5a8940e9d08d32caa9db4480.zip
initial commitHEADmaster
Diffstat (limited to 'src/demo.spec.ts')
-rw-r--r--src/demo.spec.ts7
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);
+ });
+});