mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
css: true,
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
include: ['test/spec/**/*'],
|
|
setupFiles: ['./test/spec_helpers.mts'],
|
|
},
|
|
});
|