mirror of https://github.com/lukechilds/node.git
Browse Source
Fixes: https://github.com/nodejs/node/issues/12918 PR-URL: https://github.com/nodejs/node/pull/12927 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>v6.x
cjihrig
8 years ago
committed by
Myles Borins
2 changed files with 10 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
const assert = require('assert'); |
|||
const https = require('https'); |
|||
|
|||
assert.doesNotThrow(() => { https.Agent(); }); |
|||
assert.ok(https.Agent() instanceof https.Agent); |
Loading…
Reference in new issue