mirror of
https://github.com/nodejs/node.git
synced 2025-12-27 23:41:14 +00:00
Tests should be explicit regarding whether a promise is expected to settle, and the test should fail when the behavior does not meet expectations. PR-URL: https://github.com/nodejs/node/pull/60976 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Erick Wendel <erick.workspace@gmail.com>
37 lines
885 B
JavaScript
37 lines
885 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const dc = require('diagnostics_channel');
|
|
const assert = require('assert');
|
|
|
|
const channel = dc.tracingChannel('test');
|
|
|
|
const expectedError = new Error('test');
|
|
const input = { foo: 'bar' };
|
|
const thisArg = { baz: 'buz' };
|
|
|
|
function check(found) {
|
|
assert.deepStrictEqual(found, input);
|
|
}
|
|
|
|
const handlers = {
|
|
start: common.mustCall(check),
|
|
end: common.mustCall(check),
|
|
asyncStart: common.mustCall(check),
|
|
asyncEnd: common.mustCall(check),
|
|
error: common.mustCall((found) => {
|
|
check(found);
|
|
assert.deepStrictEqual(found.error, expectedError);
|
|
})
|
|
};
|
|
|
|
channel.subscribe(handlers);
|
|
|
|
assert.rejects(
|
|
channel.tracePromise(common.mustCall(function(value) {
|
|
assert.deepStrictEqual(this, thisArg);
|
|
return Promise.reject(value);
|
|
}), input, thisArg, expectedError),
|
|
expectedError,
|
|
).then(common.mustCall());
|