feat: move to Astro and mostly reworked the Pokémon Shuffle game

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2023-08-15 18:37:26 +02:00
parent 4bb1f17467
commit c42311eaae
111 changed files with 11290 additions and 10821 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);
});