1.0.3 • Published 6 years ago

@nthlytics/testable-koa-next v1.0.3

Weekly downloads
62
License
ISC
Repository
-
Last release
6 years ago

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)