schlechtenburg/vitest.config.ts

17 lines
328 B
TypeScript
Raw Normal View History

2024-10-08 07:15:26 +00:00
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
test: {
browser: {
enabled: true,
name: 'firefox',
2024-10-09 12:43:40 +00:00
headless: true,
2024-10-08 07:15:26 +00:00
provider: 'playwright',
// https://playwright.dev
providerOptions: {},
},
},
})