mochapack
Version:
mocha cli with webpack support
19 lines (18 loc) • 417 B
TypeScript
import { Options } from 'yargs';
/**
* Cleans up Mocha's Yargs options to provide only those that are relevant to
* running Mochapack
*/
declare const mochaOptionsForMochapack: Pick<{
[key: string]: Options;
}, string | number> & {
opts: Options;
} & {
extension: {
default: string[];
};
'watch-ignore': {
default: string[];
};
};
export default mochaOptionsForMochapack;