From 307e91e49c1abaeeab1dd57d2940e047bc2a610e Mon Sep 17 00:00:00 2001 From: Angel Mendez Cano Date: Fri, 9 Feb 2024 11:03:56 -0600 Subject: [PATCH] chore: test script should not run on watch mode - update test script --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4ccce160..8742ff24 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,8 @@ "lint:types": "tsc", "i18n": "node_modules/i18next-parser/bin/cli.js", "i18n:check": "node_modules/i18next-parser/bin/cli.js --fail-on-warnings --fail-on-update", - "test": "vitest watch", - "test:no-watch": "vitest run", + "test": "vitest run", + "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "backend": "docker-compose -f backend-docker-compose.yml up" },