mirror of
https://github.com/xoseperez/espurna.git
synced 2026-02-20 01:31:34 +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,
|
|
}
|
|
});
|