html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
13 lines • 577 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.saveDiffTo = void 0;
const looks_same_1 = __importDefault(require("looks-same"));
function saveDiffTo(diffOpts, diffPath) {
const { diffColor: highlightColor, ...otherOpts } = diffOpts;
return looks_same_1.default.createDiff({ diff: diffPath, highlightColor, ...otherOpts });
}
exports.saveDiffTo = saveDiffTo;
//# sourceMappingURL=worker.js.map