Lines Matching refs:warning
2 // The flag suppresses stderr output but the warning event will still emit
13 process.on('warning', common.mustCall((warning) => {
14 assert(warning);
15 assert.match(warning.name, /^(?:Warning|CustomWarning)/);
16 assert.strictEqual(warning.message, testMsg);
17 if (warning.code) assert.strictEqual(warning.code, testCode);
18 if (warning.detail) assert.strictEqual(warning.detail, testDetail);