ci: run node tests directly instead of translated files (#15565)

Co-authored-by: nektro <nektro@users.noreply.github.com>
This commit is contained in:
Meghan Denny
2024-12-03 22:10:50 -08:00
committed by GitHub
parent 0d5e4e162b
commit 23299dadf6
1894 changed files with 51198 additions and 45553 deletions

View File

@@ -0,0 +1,9 @@
'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);