init commit

This commit is contained in:
2026-06-19 11:25:57 -05:00
commit a3d459bf7f
22 changed files with 4752 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { describe, it, expect } from 'vitest';
import { greet } from './greet';
describe('greet', () => {
it('returns a greeting', () => {
expect(greet('Svelte')).toBe('Hello, Svelte!');
});
});