(suite: Suite)
| 23 | public static readonly topLevelSuites: Set<Suite> = new Set(); |
| 24 | |
| 25 | public static registerTopLevelSuite(suite: Suite) { |
| 26 | Runner.topLevelSuites.add(suite); |
| 27 | Runner.queueRun(); |
| 28 | } |
| 29 | |
| 30 | public static setNoExit(noExit: boolean) { |
| 31 | Runner.noExit = noExit; |