( describe: Circus.DescribeBlock, )
| 168 | }; |
| 169 | |
| 170 | export const describeBlockHasTests = ( |
| 171 | describe: Circus.DescribeBlock, |
| 172 | ): boolean => |
| 173 | describe.children.some( |
| 174 | child => child.type === 'test' || describeBlockHasTests(child), |
| 175 | ); |
| 176 | |
| 177 | const _makeTimeoutMessage = ( |
| 178 | timeout: number, |