From c7715445eff2404f83e37c4acb7bc7344fff63b2 Mon Sep 17 00:00:00 2001 From: May Shech Date: Mon, 29 Jan 2024 00:44:43 +0200 Subject: [PATCH] added a new cmd --- README.md | 6 ++++++ package.json | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ef2c90..9149017 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,12 @@ npm run storybook Tests using Playwright with ui: +```bash +npm run test:ui +``` + +Tests using Playwright: + ```bash npm run test ``` diff --git a/package.json b/package.json index 950eef0..5a60b91 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,8 @@ "prisma:generate": "npx prisma generate", "prisma:validate": "npx prisma validate", "migrate:postgres": "prisma migrate dev", - "test": "npx playwright test --ui", + "test": "npx playwright test", + "test:ui": "npx playwright test --ui", "migrate:reset": "prisma migrate reset --force", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build"