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.
2 parents 3a6cf38 + f112fbc commit aeb56fcCopy full SHA for aeb56fc
packages/app/src/cli/utilities/app/http-reverse-proxy.test.ts
@@ -81,11 +81,9 @@ function getTestReverseProxy(protocol: 'http' | 'https') {
81
}>({
82
// eslint-disable-next-line no-empty-pattern
83
ports: async ({}, use) => {
84
- const [proxyPort, targetPort1, targetPort2] = await Promise.all([
85
- getAvailableTCPPort(),
86
87
88
- ])
+ const proxyPort = await getAvailableTCPPort()
+ const targetPort1 = await getAvailableTCPPort()
+ const targetPort2 = await getAvailableTCPPort()
89
await use({proxyPort, targetPort1, targetPort2})
90
},
91
servers: async ({ports}, use) => {
0 commit comments