(outputs: string[])
| 763 | } |
| 764 | |
| 765 | private checkOutputs(outputs: string[]): void { |
| 766 | outputs.forEach(name => { |
| 767 | const [normalizedName] = parseNodeName(name); |
| 768 | if (!this.graph.nodes[normalizedName]) { |
| 769 | throw new Error(`The output '${name}' is not found in the graph`); |
| 770 | } |
| 771 | }); |
| 772 | } |
| 773 | } |
no test coverage detected