mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
test: simplify test skipping
* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
This commit is contained in:
parent
cc1a47dc6b
commit
2d2986ae72
333 changed files with 901 additions and 1638 deletions
|
@ -21,14 +21,11 @@
|
|||
|
||||
'use strict';
|
||||
const common = require('../common');
|
||||
const assert = require('assert');
|
||||
|
||||
if (!common.hasCrypto) {
|
||||
if (!common.hasCrypto)
|
||||
common.skip('missing crypto');
|
||||
return;
|
||||
}
|
||||
const https = require('https');
|
||||
|
||||
const assert = require('assert');
|
||||
const https = require('https');
|
||||
const url = require('url');
|
||||
const fs = require('fs');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue