tap-parser
Version:
parse the test anything protocol
21 lines • 562 B
JavaScript
/**
* The summary of the plan, for inclusion in the results
* provided in the `complete` event.
*/
export 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 || '';
}
}
//# sourceMappingURL=final-plan.js.map