Skip to content

Commit fc5d7f2

Browse files
Increase test timeouts.
1 parent d7523eb commit fc5d7f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/unit/context-process-exit-test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ describe("context process exit", function() {
4040
})
4141

4242
it("should produce warning when messages are queued with blocky", async function() {
43-
this.slow(1000)
43+
this.slow(2000)
4444
const {stderr} = await createProcess(() => {
4545
zmq.context.blocky = true
46-
const socket1 = new zmq.Dealer({linger: 600})
46+
const socket1 = new zmq.Dealer({linger: 1000})
4747
socket1.connect("tcp://127.0.0.1:4567")
4848
socket1.send(null)
4949
})
@@ -62,10 +62,10 @@ describe("context process exit", function() {
6262
})
6363

6464
it("should produce warning when messages are queued without blocky", async function() {
65-
this.slow(1000)
65+
this.slow(2000)
6666
const {stderr} = await createProcess(() => {
6767
zmq.context.blocky = false
68-
const socket1 = new zmq.Dealer({linger: 600})
68+
const socket1 = new zmq.Dealer({linger: 1000})
6969
socket1.connect("tcp://127.0.0.1:4567")
7070
socket1.send(null)
7171
})

0 commit comments

Comments
 (0)