From c66aa8abc0e952d47d085d7c3775b26aeca72319 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Thu, 21 Jan 2021 11:22:15 -0800 Subject: [PATCH] Fix a couple of missing display names in integration test components (#29902) Summary: IntegtationTestsApp looks for a display name of each component to register it in the AppRegistry, along with show its name in the tests lists. Add the missing display names back to these tests. ## Changelog [iOS] [Fixed] - Fix a couple of missing display names in integration test components Pull Request resolved: https://github.com/facebook/react-native/pull/29902 Test Plan: All integration tests now show up in the list. Reviewed By: TheSavior Differential Revision: D25998969 Pulled By: appden fbshipit-source-id: 45e5544c8df60a67615b75d85195f3080a42a0b8 --- IntegrationTests/LayoutEventsTest.js | 1 + IntegrationTests/TimersTest.js | 1 + 2 files changed, 2 insertions(+) diff --git a/IntegrationTests/LayoutEventsTest.js b/IntegrationTests/LayoutEventsTest.js index c86592a600b2f1..8c24abf36622ed 100644 --- a/IntegrationTests/LayoutEventsTest.js +++ b/IntegrationTests/LayoutEventsTest.js @@ -197,4 +197,5 @@ const styles = StyleSheet.create({ }, }); +LayoutEventsTest.displayName = 'LayoutEventsTest'; module.exports = LayoutEventsTest; diff --git a/IntegrationTests/TimersTest.js b/IntegrationTests/TimersTest.js index 8550c6f00eec6b..05569c8dbfcefd 100644 --- a/IntegrationTests/TimersTest.js +++ b/IntegrationTests/TimersTest.js @@ -267,4 +267,5 @@ const styles = StyleSheet.create({ }, }); +TimersTest.displayName = 'TimersTest'; module.exports = TimersTest;