chore: update .gitignore and biome.json to include additional test-related directories and files for improved E2E testing

This commit is contained in:
Anish Sarkar 2026-05-12 03:59:52 +05:30
parent bed2041a1b
commit 4dbadbf159
2 changed files with 18 additions and 3 deletions

View file

@ -12,6 +12,10 @@
# testing
/coverage
/playwright/.auth/
/playwright-report/
/test-results/
/blob-report/
# next.js
/.next/
@ -48,5 +52,4 @@ next-env.d.ts
# source
/.source/
.pnpm-store/
.pnpm-store/

View file

@ -7,7 +7,19 @@
},
"files": {
"ignoreUnknown": true,
"includes": ["**", "!!node_modules", "!!.git", "!!.next", "!!dist", "!!build", "!!coverage"],
"includes": [
"**",
"!!node_modules",
"!!.git",
"!!.next",
"!!dist",
"!!build",
"!!coverage",
"!!test-results",
"!!playwright-report",
"!!blob-report",
"!!playwright/.auth"
],
"maxSize": 1048576
},
"formatter": {