cypress-terminal-report
Version:
Better terminal and file output for cypress test logs.
15 lines (14 loc) • 515 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const LogFormat_1 = __importDefault(require("./LogFormat"));
class LogCollectBase {
constructor(collectorState, config) {
this.collectorState = collectorState;
this.config = config;
this.format = new LogFormat_1.default(config);
}
}
exports.default = LogCollectBase;