splatoon3.ink/vitest.config.mjs
Matt Isenhower 7084b3c5ae Set up Vitest and CI workflow for unit tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 16:45:20 -08:00

14 lines
299 B
JavaScript

import { fileURLToPath, URL } from 'url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
test: {
include: ['app/**/*.test.mjs', 'src/**/*.test.{js,mjs}'],
},
});