Thanks for the nice lib! Just started using it and found a bug:
test('example', () => new Promise((resolve, reject) => {
reject()
})
test('example', () => new Promise((resolve, reject) => {
reject("reason")
})
test('example', () => {
throw "reason"
})
As result test fail will be silently ignored. The bug is here: format function expects that err is defined and is Error instance although this is not required.
Thanks for the nice lib! Just started using it and found a bug:
As result test fail will be silently ignored. The bug is here:
formatfunction expects that err is defined and isErrorinstance although this is not required.