initial commit

This commit is contained in:
evilchili
2026-08-09 15:46:11 -07:00
parent 71cfa81eb1
commit 02764cb8ff
13 changed files with 3882 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
import { defineConfig } from 'vitest/config'
import { playwright } from '@vitest/browser-playwright'
export default defineConfig({
test: {
projects: [
{
test: {
include: [
'test/**/*.{test,spec}.ts',
],
name: 'Release Acceptance',
environment: 'happy-dom',
},
},
],
browser: {
enabled: true,
provider: playwright(),
headless: true,
// https://vitest.dev/config/browser/playwright
instances: [
{ browser: 'chromium' },
],
},
},
})