Skip to content

Commit ee02152

Browse files
andrewdacenkofacebook-github-bot
authored andcommitted
Fix non standard hermes config internally (#52321)
Summary: Pull Request resolved: #52321 Changelog: [Internal] Allow non standard hermes internally. Reviewed By: lenaic, rubennorte Differential Revision: D77446774 fbshipit-source-id: 09919c8216932e15b2938d3e99b3df5d53e11c92
1 parent d5cd6ed commit ee02152

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

private/react-native-fantom/runner/runner.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,10 @@ module.exports = async function runTest(
239239
continue;
240240
}
241241

242-
if (testConfig.hermesVariant !== HermesVariantEnum.Hermes) {
242+
if (
243+
EnvironmentOptions.isOSS &&
244+
testConfig.hermesVariant !== HermesVariantEnum.Hermes
245+
) {
243246
testResultsByConfig.push([
244247
{
245248
ancestorTitles: [

0 commit comments

Comments
 (0)