diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/AppEventsTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/AppEventsTest.js index e46b956b4..bf7931b5a 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/AppEventsTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/AppEventsTest.js @@ -53,6 +53,8 @@ var AppEventsTest = React.createClass({ } }); +AppEventsTest.displayName = 'AppEventsTest'; + var styles = StyleSheet.create({ container: { margin: 40, diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/AsyncStorageTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/AsyncStorageTest.js index dd7de2d69..43df4df18 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/AsyncStorageTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/AsyncStorageTest.js @@ -176,4 +176,6 @@ var AsyncStorageTest = React.createClass({ } }); +AsyncStorageTest.displayName = 'AsyncStorageTest'; + module.exports = AsyncStorageTest; diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestHarnessTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestHarnessTest.js index adf57ab3d..12243a0fe 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestHarnessTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/IntegrationTestHarnessTest.js @@ -59,4 +59,6 @@ var IntegrationTestHarnessTest = React.createClass({ } }); +IntegrationTestHarnessTest.displayName = 'IntegrationTestHarnessTest'; + module.exports = IntegrationTestHarnessTest; diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/LayoutEventsTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/LayoutEventsTest.js index 7e8cd3a0d..260a1c8c9 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/LayoutEventsTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/LayoutEventsTest.js @@ -164,4 +164,6 @@ var styles = StyleSheet.create({ }, }); +LayoutEventsTest.displayName = 'LayoutEventsTest'; + module.exports = LayoutEventsTest; diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/PromiseTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/PromiseTest.js index 3bcc12994..14e96fc72 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/PromiseTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/PromiseTest.js @@ -47,4 +47,6 @@ var PromiseTest = React.createClass({ }); +PromiseTest.displayName = 'PromiseTest'; + module.exports = PromiseTest; diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/SimpleSnapshotTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/SimpleSnapshotTest.js index c57700a0c..20eacec48 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/SimpleSnapshotTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/SimpleSnapshotTest.js @@ -53,4 +53,6 @@ var styles = StyleSheet.create({ }, }); +SimpleSnapshotTest.displayName = 'SimpleSnapshotTest'; + module.exports = SimpleSnapshotTest; diff --git a/Examples/UIExplorer/UIExplorerIntegrationTests/js/TimersTest.js b/Examples/UIExplorer/UIExplorerIntegrationTests/js/TimersTest.js index 4814d8b1d..c84dc3192 100644 --- a/Examples/UIExplorer/UIExplorerIntegrationTests/js/TimersTest.js +++ b/Examples/UIExplorer/UIExplorerIntegrationTests/js/TimersTest.js @@ -152,4 +152,6 @@ var styles = StyleSheet.create({ }, }); +TimersTest.displayName = 'TimersTest'; + module.exports = TimersTest;