Changelog
1.12.0 - 2018-05-08
events.emit
and events.emitLater
that
resolves to undefined
once the event has been emitted to all
listeners or to false
if it was canceled.Changelog
1.11.0 - 2018-05-08
util.callbackify
helper to produce functions that can be
called with a callback function or that will return a Promise
if the callback function is omitted. This utility function
is used in bedrock modules that are written using Promises
internally and that expose Promise-based public APIs that
also support legacy callback patterns.Changelog
1.10.0 - 2018-04-06
--log-exclude
option to eliminate logging from certain modules.Changelog
1.9.2 - 2018-03-28
Changelog
1.8.0 - 2018-02-13
--log-only
option to log only certain modules.Changelog
1.7.1 - 2017-11-13
Changelog
1.7.0 - 2017-08-10
assertNoError(err)
global test helper which makes an assertion that
err
should be falsy. If an error does occur, the full error will be
logged to the console. The additional logging is helpful when troubleshooting
tests that are failing due to a regression. This helper should be used in
place of the commonly used should.not.exist(err)
assertion.