add return value for eq

This commit is contained in:
Clement Denis 2020-05-29 16:50:37 +02:00 committed by Clément
parent 26f9eee89a
commit 5f8f54f027
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import { join as joinPath, dirname } from 'path'
import { fileURLToPath } from 'url'
import { deepStrictEqual as eq } from 'assert'
import { deepStrictEqual } from 'assert'
import * as fs from 'fs'
const { readFile, writeFile } = fs.promises
@ -21,6 +21,7 @@ global.fetch = (url) => {
const wait = delay => new Promise(s => setTimeout(s, delay))
const fail = fn => { try { fn() } catch (err) { return true } }
const eq = (a, b) => (deepStrictEqual(a, b), true)
const name = process.argv[2]
const fatal = (...args) => {