Skip to content

Commit

Permalink
fix-action
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jul 27, 2023
1 parent e862800 commit 1d5c11a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/repl.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,11 @@ describe('repl', function () {
.use(Plugin, { port: 0 })
.ready()

var port = si.export('repl/address').port
var addr = si.export('repl/address')
console.log('ADDR', addr)

var result = ''
var sock = Net.connect(port)
var sock = Net.connect(addr.port, addr.host)
var first = true

return new Promise((good, bad) => {
Expand Down

0 comments on commit 1d5c11a

Please sign in to comment.