From 43e642116e7baf06f5cd976fd57e7d699dbd0c23 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Mon, 5 May 2025 13:21:58 +0200 Subject: [PATCH] Add passWithNoTests flag (#771) --- apps/mobile-app/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/mobile-app/package.json b/apps/mobile-app/package.json index d5693c352..c32aecb35 100644 --- a/apps/mobile-app/package.json +++ b/apps/mobile-app/package.json @@ -7,8 +7,8 @@ "android": "expo run:android", "ios": "expo run:ios", "web": "expo start --web", - "test": "jest", - "test:watch": "jest --watchAll", + "test": "jest --passWithNoTests", + "test:watch": "jest --passWithNoTests --watchAll", "lint": "expo lint", "lint:fix": "eslint . --ext .js,.ts,.tsx --fix" },