(dartCodeDebugSessionID: string, suitePath: string, testID: number, isFailure: boolean, message: string, stack: string)
| 686 | } |
| 687 | |
| 688 | public testErrorOutput(dartCodeDebugSessionID: string, suitePath: string, testID: number, isFailure: boolean, message: string, stack: string) { |
| 689 | const suite = this.suites.getForPath(suitePath)!; |
| 690 | const test = suite.getCurrentTest(dartCodeDebugSessionID, testID); |
| 691 | |
| 692 | if (test) |
| 693 | this.testEventListeners.forEach((l) => l.testErrorOutput(dartCodeDebugSessionID, test, message, isFailure, stack)); |
| 694 | } |
| 695 | |
| 696 | private removeNode(node: TreeNode) { |
| 697 | const parent = node.parent; |
nothing calls this directly
no test coverage detected