mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const execFile = require('child_process').execFile;
|
|
const warnmod = require.resolve(common.fixturesDir + '/warnings.js');
|
|
const node = process.execPath;
|
|
|
|
const normal = [warnmod];
|
|
const noWarn = ['--no-warnings', warnmod];
|
|
const traceWarn = ['--trace-warnings', warnmod];
|
|
|
|
execFile(node, normal, function(er, stdout, stderr) {
|
|
// Show Process Warnings
|
|
assert.strictEqual(er, null);
|
|
assert.strictEqual(stdout, '');
|
|
assert(/^\(.+\)\sWarning: a bad practice warning/.test(stderr));
|
|
});
|
|
|
|
execFile(node, noWarn, function(er, stdout, stderr) {
|
|
// Hide Process Warnings
|
|
assert.strictEqual(er, null);
|
|
assert.strictEqual(stdout, '');
|
|
assert(!/^\(.+\)\sWarning: a bad practice warning/.test(stderr));
|
|
});
|
|
|
|
execFile(node, traceWarn, function(er, stdout, stderr) {
|
|
// Show Warning Trace
|
|
assert.strictEqual(er, null);
|
|
assert.strictEqual(stdout, '');
|
|
assert(/^\(.+\)\sWarning: a bad practice warning/.test(stderr));
|
|
assert(/at Object\.<anonymous>\s\(.+warnings.js:3:9\)/.test(stderr));
|
|
});
|