upgrade auf svelte5

This commit is contained in:
titver968
2025-04-08 11:13:23 +02:00
parent 31570ff196
commit a7f9a2b4a9
85 changed files with 8596 additions and 23 deletions

7
src/index.test.js 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);
});
});