Starting a new template using Svelte, SvelteKit, Tailwind, and Skeleton.

This commit is contained in:
Scott Idem
2024-02-15 09:49:35 -05:00
parent ccbb783378
commit 17d99d080c
58 changed files with 3894 additions and 9127 deletions

7
src/index.test.ts Normal file
View File

@@ -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);
});
});