mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
16 lines
277 B
JavaScript
16 lines
277 B
JavaScript
import assert from 'assert'
|
|
|
|
// assert.rejects added in node v10
|
|
export async function assertRejects (asyncFn, regExp) {
|
|
let f = () => {}
|
|
try {
|
|
await asyncFn()
|
|
} catch (error) {
|
|
f = () => {
|
|
throw error
|
|
}
|
|
} finally {
|
|
assert.throws(f, regExp)
|
|
}
|
|
}
|