From 544b6821e55826b4f71c795d0e489324b8c3b2ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Norte?= Date: Thu, 2 Jan 2025 04:32:27 -0800 Subject: [PATCH] Remove unnecessary filter for AppRegistry logs (#48367) Summary: Changelog: [internal] We removed the calls to `AppRegistry` in Fantom, so this filter isn't necessary anymore (just a no-op). Reviewed By: rshest Differential Revision: D67600610 --- packages/react-native-fantom/runner/runner.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/react-native-fantom/runner/runner.js b/packages/react-native-fantom/runner/runner.js index 776ee43957b301..f321e64ac117bc 100644 --- a/packages/react-native-fantom/runner/runner.js +++ b/packages/react-native-fantom/runner/runner.js @@ -47,10 +47,7 @@ function parseRNTesterCommandResult(result: ReturnType): { } { const stdout = result.stdout.toString(); - const outputArray = stdout - .trim() - .split('\n') - .filter(log => !log.startsWith('Running "')); // remove AppRegistry logs. + const outputArray = stdout.trim().split('\n'); // The last line should be the test output in JSON format const testResultJSON = outputArray.pop();