diff --git a/@packages/@plugins/analytics/package.json b/@packages/@plugins/analytics/package.json index f1cb8a08b..684dcbc94 100644 --- a/@packages/@plugins/analytics/package.json +++ b/@packages/@plugins/analytics/package.json @@ -8,7 +8,7 @@ "build": "tsc", "typecheck": "tsc --noEmit", "lint": "eslint src --ext .ts,.tsx", - "test": "vitest run", + "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:e2e": "playwright test", diff --git a/@packages/@plugins/package.json b/@packages/@plugins/package.json index e75a3cbc4..701eb5dd4 100644 --- a/@packages/@plugins/package.json +++ b/@packages/@plugins/package.json @@ -7,7 +7,7 @@ "scripts": { "typecheck": "tsc --noEmit", "lint": "eslint src --ext .ts,.tsx", - "test": "vitest run", + "test": "vitest run --passWithNoTests", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:e2e": "playwright test", diff --git a/@packages/@testing/mocks/package.json b/@packages/@testing/mocks/package.json index f380bc89d..1fd8f40b9 100644 --- a/@packages/@testing/mocks/package.json +++ b/@packages/@testing/mocks/package.json @@ -21,7 +21,7 @@ "types": "./src/index.ts", "scripts": { "typecheck": "tsc --noEmit", - "build": "tsc", + "build": "tsc --noEmit", "test": "vitest run --passWithNoTests", "lint": "eslint . --ext ts" },