Skip to content

Commit 776c9de

Browse files
Disable unreliable test.
1 parent 4831244 commit 776c9de

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/unit/compat/socket-unbind-test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
if (process.env.INCLUDE_COMPAT_TESTS) {
1+
/* This test is very unreliable in practice, especially in CI.
2+
It is disabled by default. */
3+
if (process.env.INCLUDE_COMPAT_TESTS && process.env.INCLUDE_COMPAT_UNBIND_TEST) {
24
const zmq = require("./load")
35
const semver = require("semver")
46
const {assert} = require("chai")
57
const {testProtos, uniqAddress} = require("../helpers")
68

7-
/* TODO: This test regularly hangs. */
89
for (const proto of testProtos("tcp")) {
910
describe(`compat socket with ${proto} unbind`, function() {
1011
beforeEach(function() {

0 commit comments

Comments
 (0)