mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
chore: update .gitignore and biome.json to include additional test-related directories and files for improved E2E testing
This commit is contained in:
parent
bed2041a1b
commit
4dbadbf159
2 changed files with 18 additions and 3 deletions
5
surfsense_web/.gitignore
vendored
5
surfsense_web/.gitignore
vendored
|
|
@ -12,6 +12,10 @@
|
||||||
|
|
||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
/playwright/.auth/
|
||||||
|
/playwright-report/
|
||||||
|
/test-results/
|
||||||
|
/blob-report/
|
||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/.next/
|
||||||
|
|
@ -49,4 +53,3 @@ next-env.d.ts
|
||||||
/.source/
|
/.source/
|
||||||
|
|
||||||
.pnpm-store/
|
.pnpm-store/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,19 @@
|
||||||
},
|
},
|
||||||
"files": {
|
"files": {
|
||||||
"ignoreUnknown": true,
|
"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
|
"maxSize": 1048576
|
||||||
},
|
},
|
||||||
"formatter": {
|
"formatter": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue