@nthlytics/testable-koa-next
v1.0.3
Published
A function that returns another function intended to be passed to tests that ensure a piece of Koa middleware waits for next to return.
Downloads
87
Maintainers
Readme
testable-koa-next
A function that returns another function intended to be passed as next to Koa middleware functions under test conditions. Assertions can then be made about whether the middleware function waited for next to complete before returning.
Usage
const koaNext = createKoaNext();
await koaNext();
console.log(koaNext.didComplete)
const longerKoaNext = createKoaNext(100); 100ms
await longerKoaNext();
console.log(koaNext.didComplete)