mochapack
Version:
mocha cli with webpack support
9 lines (8 loc) • 326 B
TypeScript
import Mocha from 'mocha';
import { MochapackMochaOptions } from '../../../cli/argsParser/optionsFromParsedArgs/types';
/**
* Initializes an instance of Mocha on behalf of the user with their provided
* options
*/
declare const initMocha: (options: MochapackMochaOptions, cwd: string) => Mocha;
export default initMocha;