(dartCodeDebugSessionID: string | undefined, suitePath: string)
| 432 | } |
| 433 | |
| 434 | public suiteDiscovered(dartCodeDebugSessionID: string | undefined, suitePath: string): SuiteData { |
| 435 | const [suite] = this.getOrCreateSuite(suitePath); |
| 436 | this.updateNode({ node: suite.node }); |
| 437 | |
| 438 | this.testEventListeners.forEach((l) => l.suiteDiscovered(dartCodeDebugSessionID, suite.node)); |
| 439 | |
| 440 | return suite; |
| 441 | } |
| 442 | |
| 443 | /** |
| 444 | * Handles when a suite is discovered during a test run. |
no test coverage detected