UNPKG

stryker-mocha-runner

Version:

A plugin to use the mocha test runner in Stryker, the JavaScript mutation testing framework

12 lines 345 B
/// <reference types="node" /> import * as Mocha from 'mocha'; import * as multimatch from 'multimatch'; /** * Wraps Mocha class and require for testability */ export default class LibWrapper { static Mocha: typeof Mocha; static require: NodeRequire; static multimatch: typeof multimatch; } //# sourceMappingURL=LibWrapper.d.ts.map