We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4831244 commit 776c9deCopy full SHA for 776c9de
test/unit/compat/socket-unbind-test.js
@@ -1,10 +1,11 @@
1
-if (process.env.INCLUDE_COMPAT_TESTS) {
+/* 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) {
4
const zmq = require("./load")
5
const semver = require("semver")
6
const {assert} = require("chai")
7
const {testProtos, uniqAddress} = require("../helpers")
8
- /* TODO: This test regularly hangs. */
9
for (const proto of testProtos("tcp")) {
10
describe(`compat socket with ${proto} unbind`, function() {
11
beforeEach(function() {
0 commit comments