mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-07-28 22:29:09 +00:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
include: ['src/__tests__/**'],
|
|
},
|
|
});
|