(commands: ICommand[])
| 734 | } |
| 735 | |
| 736 | public async runSubset(commands: ICommand[]): Promise<void> { |
| 737 | if (!commands?.length) return; |
| 738 | await this.executeCommands(commands); |
| 739 | } |
| 740 | |
| 741 | public setOutput(value: unknown): void { |
| 742 | this.output = value; |
no test coverage detected