Skip to content

Commit

Permalink
fixup: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeck committed Feb 9, 2022
1 parent c7c734d commit cdbba25
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/es-module/test-http-imports.mjs
Expand Up @@ -4,12 +4,14 @@ import { path, readKey } from '../common/fixtures.mjs';
import { pathToFileURL } from 'url';
import assert from 'assert';
import http from 'http';
import https from 'https';
import os from 'os';
import util from 'util';

if (!common.hasCrypto)
if (!common.hasCrypto) {
common.skip('missing crypto');
}

const https = (await import('https')).default;

const createHTTPServer = http.createServer;

Expand Down

0 comments on commit cdbba25

Please sign in to comment.