1.0.0 • Published 10 years ago
must-call v1.0.0
must-call
must-call is an assertion library for async test.
This method is inspired from node.js project test/common.js.
const mustCall = require('must-call');
someCallback(mustCall(() => {
// when callback does not called at the end of the process,
// throw exception.
}));
somePromiseTest().then(mustCall(() => {
// when async test does not resolved at the end of the process,
// throw exception.
}));1.0.0
10 years ago