Added vitest and broke up components

This commit is contained in:
Mike Conrad
2023-08-25 21:43:38 -04:00
parent 01a9bc6cb4
commit 84502ca5d4
11 changed files with 712 additions and 53 deletions

12
vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
/// <reference types="vitest" />
// Configure Vitest (https://vitest.dev/config/)
import { defineConfig } from 'vite'
export default defineConfig({
test: {
/* for example, use global to avoid globals imports (describe, test, expect): */
// globals: true,
},
})