Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/parallel/test-release-npm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ const path = require('path');

const releaseReg = /^v\d+\.\d+\.\d+$/;

if (!releaseReg.test(process.version)) {
// npm requires crypto support.
if (!releaseReg.test(process.version) || !common.hasCrypto) {
common.skip('This test is only for release builds');
}

{
// Verify that npm does not print out a warning when executed
// Verify that npm does not print out a warning when executed.

const npmCli = path.join(__dirname, '../../deps/npm/bin/npm-cli.js');
const npmExec = child_process.spawnSync(process.execPath, [npmCli]);
Expand Down