mirror of
https://github.com/suren-atoyan/monaco-react.git
synced 2026-01-25 16:02:35 +00:00
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
snapshotFormat: {
|
|
printBasicPrototype: true,
|
|
},
|
|
setupFiles: ['./setupTests.ts'],
|
|
exclude: ['**/node_modules/**', '**/demo/**', '**/playground/**'],
|
|
},
|
|
});
|