From 54cd72e08df1575c2a5fdd0d749cf7089fbc95a2 Mon Sep 17 00:00:00 2001 From: Alejandra <90076947+alejsdev@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:42:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20tests=20scripts=20in=20pac?= =?UTF-8?q?kage.json=20(#2098)?= 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 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" } }