mirror of
https://github.com/zen-browser/www
synced 2026-04-26 01:24:57 +02:00
- Added Playwright configuration for end-to-end testing. - Integrated Vitest for unit testing with setup files. - Updated package.json scripts for testing commands. - Created CI pipeline for automated testing and builds. - Added various test cases for components and pages. - Updated .gitignore to exclude Playwright and coverage. - Enhanced ModsList component with additional class for styling.
16 lines
275 B
JSON
16 lines
275 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@vitest/browser/providers/playwright"
|
|
]
|
|
}
|
|
} |