Skip to content

Commit

Permalink
Increase availability limit for Node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Apr 9, 2024
1 parent d4693b1 commit 319d8fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ abstract class PortUtilBaseTest {
fun givenFindAvailable_whenCoroutineCancelled_thenHandlesCancellationProperly() = runTest(timeout = 120.seconds) {
val port = Port.Proxy.MIN.toPortProxy()
val host = LocalHost.IPv4
val limit = if (isNodeJs) 50 else 750
val limit = if (isNodeJs) 250 else 750
val i = port.iterator(limit)

var count = 0
Expand Down

0 comments on commit 319d8fd

Please sign in to comment.