Initial commit

This commit is contained in:
2024-02-23 09:56:02 +00:00
commit d37de6d304
73 changed files with 10954 additions and 0 deletions

5
tests/README.md Normal file
View File

@ -0,0 +1,5 @@
# Tests
Old Unit tests for each elements
the paths should correspond to the base folder from `src`

9
tests/basic.test.ts Normal file
View File

@ -0,0 +1,9 @@
import { expect, test } from 'vitest'
// Edit an assertion and save to see HMR in action
test('Math.sqrt()', () => {
expect(Math.sqrt(4)).toBe(2);
expect(Math.sqrt(144)).toBe(12);
expect(Math.sqrt(2)).toBe(Math.SQRT2);
});