🔧 Add tests scripts in package.json (#2098)
This commit is contained in:
@@ -8,7 +8,9 @@
|
|||||||
"build": "tsc -p tsconfig.build.json && vite build",
|
"build": "tsc -p tsconfig.build.json && vite build",
|
||||||
"lint": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./",
|
"lint": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"generate-client": "openapi-ts"
|
"generate-client": "openapi-ts",
|
||||||
|
"test": "bunx playwright test",
|
||||||
|
"test:ui": "bunx playwright test --ui"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@hookform/resolvers": "^5.2.2",
|
"@hookform/resolvers": "^5.2.2",
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun run --filter frontend dev",
|
"dev": "bun run --filter frontend dev",
|
||||||
"lint": "bun run --filter frontend lint"
|
"lint": "bun run --filter frontend lint",
|
||||||
|
"test": "bun run --filter frontend test",
|
||||||
|
"test:ui": "bun run --filter frontend test:ui"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user