mirror of
https://github.com/zoriya/v10.git
synced 2026-08-13 17:40:12 +00:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
passWithNoTests: true,
|
|
onConsoleLog: (log) => !log.includes('Lit is in dev mode'),
|
|
environment: 'happy-dom',
|
|
},
|
|
});
|