Adds playwright component fixture tests

This commit is contained in:
Henning Dieterichs
2026-04-01 11:05:45 +02:00
committed by Henning Dieterichs
parent bd5138e608
commit 6e701d61b3
10 changed files with 405 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "ES2022",
"moduleResolution": "bundler",
"target": "ES2022",
"strict": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"rootDir": ".",
"outDir": "out",
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"]
},
"include": ["tests/**/*.ts", "playwright.config.ts"],
"exclude": ["node_modules"]
}