Skip to content

Commit d1e609d

Browse files
committed
test: enable the HTTPS over HTTPS test on node v0.11.8
Issue is now fixed, and all tests are now passing on v0.11.8 :D
1 parent e5ecd0b commit d1e609d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ describe('HttpsProxyAgent', function () {
223223
});
224224
});
225225

226-
if (version.compare('0.11.3') < 0) {
227-
// This test is disabled on node >= 0.11.3, since it currently segfaults :(
226+
if (version.compare('0.11.3') < 0 || version.compare('0.11.8') >= 0) {
227+
// This test is disabled on node >= 0.11.3 && < 0.11.8, since it segfaults :(
228228
// See: https://github.com/joyent/node/issues/6204
229229

230230
it('should work over an HTTPS proxy', function (done) {

0 commit comments

Comments
 (0)