🔧 Add tests scripts in package.json (#2098)

This commit is contained in:
Alejandra
2026-01-20 22:42:07 +01:00
committed by GitHub
parent 8574ea4397
commit 54cd72e08d
2 changed files with 6 additions and 2 deletions

View File

@@ -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",

View File

@@ -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"
} }
} }