We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249460f commit 502048bCopy full SHA for 502048b
test/e2e/hooks.test.ts
@@ -712,6 +712,9 @@ describe('Hooks E2E Tests', () => {
712
asyncGateway.addRoute(asyncRouteConfig)
713
const asyncServer = await asyncGateway.listen(asyncGatewayPort)
714
715
+ // Wait for the gateway server to be ready
716
+ await new Promise((resolve) => setTimeout(resolve, 1000))
717
+
718
// Wait for the gateway server to be ready with proper health check
719
let gatewayReady = false
720
for (let i = 0; i < 20; i++) {
@@ -757,5 +760,5 @@ describe('Hooks E2E Tests', () => {
757
760
asyncServer.stop()
758
761
asyncFailingServer.stop()
759
762
}
- }, 20000)
763
+ }, 30000)
764
})
0 commit comments