diff --git a/frontend/package.json b/frontend/package.json index 8dccdd9..a24a3b5 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -8,7 +8,9 @@ "build": "tsc -p tsconfig.build.json && vite build", "lint": "biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true ./", "preview": "vite preview", - "generate-client": "openapi-ts" + "generate-client": "openapi-ts", + "test": "bunx playwright test", + "test:ui": "bunx playwright test --ui" }, "dependencies": { "@hookform/resolvers": "^5.2.2", diff --git a/package.json b/package.json index d58acb9..db1783f 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,8 @@ ], "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" } }