mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-03 15:04:17 +01:00
10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
import { SPEC_DIR } from './gulpfile.mjs';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
dir: SPEC_DIR,
|
|
}
|
|
});
|