We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8574ea4 commit 54cd72eCopy full SHA for 54cd72e
2 files changed
frontend/package.json
@@ -8,7 +8,9 @@
8
"build": "tsc -p tsconfig.build.json && vite build",
9
"lint": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./",
10
"preview": "vite preview",
11
- "generate-client": "openapi-ts"
+ "generate-client": "openapi-ts",
12
+ "test": "bunx playwright test",
13
+ "test:ui": "bunx playwright test --ui"
14
},
15
"dependencies": {
16
"@hookform/resolvers": "^5.2.2",
package.json
@@ -6,6 +6,8 @@
6
],
7
"scripts": {
"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"
}
0 commit comments