ci: fix just ci command
Some checks failed
CI / test (push) Successful in 1m54s
CI / security (push) Successful in 2m8s
CI / docker-build (push) Has been cancelled

This commit is contained in:
2025-09-01 19:18:31 +02:00
parent ec0961ba09
commit efa677e259
2 changed files with 12 additions and 28 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
extends: './vite.config.ts',
environment: 'node',
include: ['src/**/*.{test,spec}.{js,ts}'],
exclude: ['src/**/*.svelte.{test,spec}.{js,ts}']
}
});