👍 Updates app unit test suite

This commit is contained in:
Rune Harlyk
2024-02-26 15:35:15 +01:00
parent 37b9022a96
commit 3f07a91ce8
7 changed files with 294 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig, UserConfigExport } from 'vitest/config'
import { svelte } from '@sveltejs/vite-plugin-svelte';
const config: UserConfigExport =
{
plugins: [svelte()],
test: {
globals: true,
environment: 'jsdom',
}
}
export default defineConfig(config)