From fe187bb793ed926d611be1fc4e5b948f1a0e8e4e Mon Sep 17 00:00:00 2001 From: Juan Carlos Carmona Calvo Date: Sat, 5 Oct 2024 11:25:07 -0600 Subject: [PATCH] fix: simulator logs to a file with predicate --- .detoxrc.js | 2 +- .github/workflows/ios-e2e-test.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.detoxrc.js b/.detoxrc.js index c5d55db48..cbc99caf6 100644 --- a/.detoxrc.js +++ b/.detoxrc.js @@ -71,7 +71,7 @@ module.exports = { simulator: { type: 'ios.simulator', device: { - type: 'iPhone 14' + type: 'iPhone 15' } }, attached: { diff --git a/.github/workflows/ios-e2e-test.yaml b/.github/workflows/ios-e2e-test.yaml index 7715bbccb..66992d9b3 100644 --- a/.github/workflows/ios-e2e-test.yaml +++ b/.github/workflows/ios-e2e-test.yaml @@ -102,7 +102,7 @@ jobs: fi - name: Start Simulator Logs - run: xcrun simctl spawn booted log stream --level debug --style compact > simulator.log & + run: xcrun simctl spawn booted log stream --level debug --style compact --predicate 'process == "Zingo"' > simulator.log & - name: Run IOS e2e test uses: nick-fields/retry@v3