diff --git a/fixtures/flight/src/App.js b/fixtures/flight/src/App.js
index 49bfc9e05135c..69fbb5e0af97d 100644
--- a/fixtures/flight/src/App.js
+++ b/fixtures/flight/src/App.js
@@ -27,7 +27,8 @@ function Foo({children}) {
return
{children}
;
}
-function Bar({children}) {
+async function Bar({children}) {
+ await new Promise(resolve => setTimeout(() => resolve('deferred text'), 10));
return {children}
;
}
@@ -81,7 +82,7 @@ export default async function App({prerender}) {
{dedupedChild}
- {dedupedChild}
+ {Promise.resolve([dedupedChild])}