stryker-html-reporter
Version:
An html reporter for the JavaScript mutation testing framework Stryker
17 lines • 466 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var UrlHelper = /** @class */ (function () {
function UrlHelper() {
}
UrlHelper.relativeUrl = function (result) {
if (result.representsFile) {
return result.name + ".html";
}
else {
return result.name + "/index.html";
}
};
return UrlHelper;
}());
exports.default = UrlHelper;
//# sourceMappingURL=UrlHelper.js.map