Skip to content

Commit

Permalink
chore: listen for right event
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed May 22, 2024
1 parent 239ffe1 commit b0ba678
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion interop/.aegir.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default {
const proxyServer = http.createServer(requestListener)
proxyServer.listen(0)

await pEvent(proxyServer, 'listen')
await pEvent(proxyServer, 'listening')

console.error('redis proxy is listening on port', proxyServer.address().port, 'after', Date.now() - start, 'ms')

Expand Down
1 change: 1 addition & 0 deletions interop/BrowserDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ARG BROWSER=chromium
ENV BROWSER=$BROWSER
# disable colored output and CLI animation from test runners
ENV CI true
ENV DEBUG libp2p*

# manually specify runner until https://github.com/hugomrdias/playwright-test/issues/572 is resolved
ENTRYPOINT npm run test:interop:multidim -- --build false --types false -t browser -- --browser $BROWSER

0 comments on commit b0ba678

Please sign in to comment.