src copy from Markus

This commit is contained in:
titver968
2025-02-25 14:49:28 +01:00
parent 7f1ae4b407
commit 882603d075
60 changed files with 2306 additions and 6 deletions

7
tatort/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);
});
});