From 9c6a904bf38b388fe776d830dcccecd1a9c6044b Mon Sep 17 00:00:00 2001 From: Alejandra Date: Tue, 20 Jan 2026 22:37:12 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20tests=20scripts=20in=20pac?= =?UTF-8?q?kage.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/package.json | 4 +++- package.json | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 8dccdd905a..a24a3b5f9f 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 d58acb9ae9..db1783f9c0 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" } }