occulto/test/utils.js
2022-10-13 22:06:51 +02:00

9 lines
151 B
JavaScript

export class Promises {
static async reject(fn) {
try {
await fn()
chai.expect.fail('Should have thrown error')
} catch {}
}
}