()
| 101 | isActive() { return this._phase !== PHASES.IDLE; } |
| 102 | |
| 103 | pendingRequirements() { return this._requirements.filter(r => r.status === REQ_STATUS.PENDING); } |
| 104 | doneRequirements() { return this._requirements.filter(r => r.status === REQ_STATUS.DONE); } |
| 105 | activeRequirement() { return this._requirements.find(r => r.status === REQ_STATUS.ACTIVE) || null; } |
| 106 |
no outgoing calls
no test coverage detected