UNPKG

just-test

Version:
13 lines (12 loc) 300 B
export class Test { constructor(id = null, name = 'Undefined', suiteName = 'Undefined', config = {}, source = null) { this.id = id; this.name = name; this.suiteName = suiteName; this.config = config; this.source = source; this.lastRun = null; this.runs = []; Object.seal(this); } }