From 10e5c3c385d544230c0a961f14730cad72268e1c Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Tue, 8 Sep 2020 23:35:37 -0700 Subject: [PATCH] Fix a couple of missing display names in integration test components IntegtationTestsApp looks for a display name to register the test component, along with show its name in the tests lists. Add the missing display names back to these tests. --- IntegrationTests/LayoutEventsTest.js | 1 + IntegrationTests/TimersTest.js | 1 + 2 files changed, 2 insertions(+) diff --git a/IntegrationTests/LayoutEventsTest.js b/IntegrationTests/LayoutEventsTest.js index c86592a600b2..8c24abf36622 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 8550c6f00eec..05569c8dbfce 100644 --- a/IntegrationTests/TimersTest.js +++ b/IntegrationTests/TimersTest.js @@ -267,4 +267,5 @@ const styles = StyleSheet.create({ }, }); +TimersTest.displayName = 'TimersTest'; module.exports = TimersTest;