(time)
| 35 | assert(kExpiringChildRunTime > kExpiringParentTimer); |
| 36 | |
| 37 | function logAfterTime(time) { |
| 38 | setTimeout(() => { |
| 39 | // The following console statements are part of the test. |
| 40 | console.log('child stdout'); |
| 41 | console.error('child stderr'); |
| 42 | }, time); |
| 43 | } |
| 44 | |
| 45 | function checkOutput(str, check) { |
| 46 | if ((check instanceof RegExp && !check.test(str)) || |
no test coverage detected
searching dependent graphs…