()
| 349 | |
| 350 | it('removes any prior instrumentation information to avoid leaks', function () { |
| 351 | function build() { |
| 352 | instrumentation.start('build'); |
| 353 | let a = heimdall.start('a'); |
| 354 | let b = heimdall.start('b'); |
| 355 | b.stop(); |
| 356 | a.stop(); |
| 357 | instrumentation.stopAndReport('build'); |
| 358 | } |
| 359 | |
| 360 | function countNodes() { |
| 361 | let graph = heimdallGraph.loadFromNode(heimdall.root); |
no test coverage detected
searching dependent graphs…