From 73a53444222c987ad97f52e681d0d2daf3dd5a6c Mon Sep 17 00:00:00 2001 From: 23nosurrend Date: Tue, 30 Apr 2024 15:42:21 +0200 Subject: [PATCH] updated package json , remove --watch on test script, add test:watch script --- .github/workflows/ci-workflow.yml | 9 ++++++++- package.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index ac19496b..2ebad865 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -27,4 +27,11 @@ jobs: - name: Run test run: npm run test - + - name: Start Expo for Android + run: npm run android + # Optionally starts the Expo project for Android (useful for automated testing environments) + + - name: Start Expo for iOS + run: npm run ios + # Optionally starts the Expo project for iOS (useful for automated testing environments) + diff --git a/package.json b/package.json index 513d2950..deb7b1cc 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "android": "expo start --android", "ios": "expo start --ios", "web": "expo start --web", - "test": "jest --watchAll", + "test": "jest", "test:update":"jest --updateSnapshot" }, "jest": {