optional final callback in runTestFiles

pull/7/head
aniket-engg 5 years ago
parent 30d61a1ab1
commit c32561d841
  1. 6
      remix-tests/src/runTestFiles.ts

@ -13,10 +13,11 @@ import { deployAll } from './deployer'
* @param filepath Path of file * @param filepath Path of file
* @param isDirectory True, if path is a directory * @param isDirectory True, if path is a directory
* @param web3 Web3 * @param web3 Web3
* @param finalCallback optional callback to run finally
* @param opts Options * @param opts Options
*/ */
export function runTestFiles(filepath: string, isDirectory: boolean, web3: Web3, opts?: Options) { export function runTestFiles(filepath: string, isDirectory: boolean, web3: Web3, finalCallback: any = () => {}, opts?: Options) {
opts = opts || {} opts = opts || {}
const sourceASTs: any = {} const sourceASTs: any = {}
const { Signale } = require('signale') const { Signale } = require('signale')
@ -152,6 +153,5 @@ export function runTestFiles(filepath: string, isDirectory: boolean, web3: Web3,
next() next()
}) })
} }
], () => { ], finalCallback)
})
} }

Loading…
Cancel
Save