occulto/test/utils.js

9 lines
151 B
JavaScript
Raw Normal View History

2022-10-13 20:06:51 +00:00
export class Promises {
static async reject(fn) {
try {
await fn()
chai.expect.fail('Should have thrown error')
} catch {}
}
}