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 676b4ce commit 93efd26Copy full SHA for 93efd26
test/unit/compat/socket-zap-test.ts
@@ -1,4 +1,5 @@
1
import * as zmq from "../../../v5-compat"
2
+import {capability} from "../../../src"
3
import semver from "semver"
4
import {assert} from "chai"
5
import {testProtos, uniqAddress} from "../helpers"
@@ -94,9 +95,7 @@ if (process.env.INCLUDE_COMPAT_TESTS) {
94
95
})
96
97
it("should support curve", function (done) {
- // TODO fix the capability type
98
- // @ts-expect-error
99
- if (!zmq.capability.curve) {
+ if (!capability.curve) {
100
this.skip()
101
}
102
0 commit comments