UNPKG

tap-parser

Version:

parse the test anything protocol

25 lines 691 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FinalPlan = void 0; /** * The summary of the plan, for inclusion in the results * provided in the `complete` event. */ class FinalPlan { start = null; end = null; skipAll; skipReason; comment; constructor(skipAll, self) { if (self.planStart >= 0) this.start = self.planStart; if (self.planEnd >= 0) this.end = self.planEnd; this.skipAll = skipAll; this.skipReason = skipAll ? self.planComment : ''; this.comment = self.planComment || ''; } } exports.FinalPlan = FinalPlan; //# sourceMappingURL=final-plan.js.map