UNPKG

test-real-styles

Version:

utilities to test real styling of dom elements

19 lines (16 loc) 380 B
/// <reference types="vitest" /> /// <reference types="vite/client" /> import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'happy-dom', testTimeout: 15000, exclude: [ '**/coverage/**', '**/dist/**', '**/node_modules/**', '**/.{idea,git,cache,output,temp}/**', ], }, });