Skip to content

Commit

Permalink
Hook up RN integration tests in Jest pipeline at Meta (facebook#47613)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#47613

Changelog: [internal]

Reviewed By: sammy-SC

Differential Revision: D65661703
  • Loading branch information
rubennorte authored and facebook-github-bot committed Nov 14, 2024
1 parent ac4c3dd commit f7c3cfa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jest/integration/runner/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ module.exports = async function runTest(
rnTesterCommandResult.stdout,
'stderr:',
rnTesterCommandResult.stderr,
'error:',
rnTesterCommandResult.error,
].join('\n'),
);
}
Expand All @@ -156,7 +158,9 @@ module.exports = async function runTest(

const endTime = Date.now();

console.log(rnTesterParsedOutput.logs);
if (process.env.SANDCASTLE == null) {
console.log(rnTesterParsedOutput.logs);
}

const testResults =
nullthrows(rnTesterParsedOutput.testResult.testResults).map(testResult => ({
Expand Down

0 comments on commit f7c3cfa

Please sign in to comment.