mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
|
|
'use strict';
|
||
|
|
require('../common');
|
||
|
|
const assert = require('assert');
|
||
|
|
const https = require('https');
|
||
|
|
|
||
|
|
assert.doesNotThrow(() => { https.Agent(); });
|
||
|
|
assert.ok(https.Agent() instanceof https.Agent);
|