This commit is contained in:
Will Greenberg
2024-10-23 15:31:32 -07:00
parent a269a45244
commit fa96520fe5
18 changed files with 2278 additions and 3524 deletions

View File

@@ -1,9 +1,10 @@
import { defineConfig } from "vitest/config";
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
plugins: [sveltekit()],
test: {
include: ['src/**/*.{test,spec}.{js,ts}']
}
});