UNPKG

stryker-mocha-runner

Version:

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

17 lines 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Mocha = require("mocha"); var multimatch = require("multimatch"); /** * Wraps Mocha class and require for testability */ var LibWrapper = /** @class */ (function () { function LibWrapper() { } LibWrapper.Mocha = Mocha; LibWrapper.require = require; LibWrapper.multimatch = multimatch; return LibWrapper; }()); exports.default = LibWrapper; //# sourceMappingURL=LibWrapper.js.map