node/test/sequential/test-process-warnings.js
Antoine du Hamel 646e19e2b4
test: ensure assertions are reachable in test/sequential
PR-URL: https://github.com/nodejs/node/pull/60412
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
2025-10-29 16:29:39 +01:00

37 lines
1.1 KiB
JavaScript

'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const execFile = require('child_process').execFile;
const warnmod = require.resolve(fixtures.path('warnings.js'));
const node = process.execPath;
const normal = [warnmod];
const noWarn = ['--no-warnings', warnmod];
const traceWarn = ['--trace-warnings', warnmod];
const warningMessage = /^\(.+\)\sWarning: a bad practice warning/;
execFile(node, normal, common.mustCall((er, stdout, stderr) => {
// Show Process Warnings
assert.strictEqual(er, null);
assert.strictEqual(stdout, '');
assert.match(stderr, warningMessage);
}));
execFile(node, noWarn, common.mustCall((er, stdout, stderr) => {
// Hide Process Warnings
assert.strictEqual(er, null);
assert.strictEqual(stdout, '');
assert.doesNotMatch(stderr, warningMessage);
}));
execFile(node, traceWarn, common.mustCall((er, stdout, stderr) => {
// Show Warning Trace
assert.strictEqual(er, null);
assert.strictEqual(stdout, '');
assert.match(stderr, warningMessage);
assert.match(stderr, /at Object\.<anonymous>\s\(.+warnings\.js:3:9\)/);
}));