mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const https = require('https');
|
|
|
|
assert.ok(https.Agent() instanceof https.Agent);
|