( description: string, children: Array<SuiteLike | SpecLike>, )
| 19 | }); |
| 20 | |
| 21 | const makeSuite = ( |
| 22 | description: string, |
| 23 | children: Array<SuiteLike | SpecLike>, |
| 24 | ): SuiteLike => ({children, description}); |
| 25 | |
| 26 | describe('collectSpecs', () => { |
| 27 | test('collects flat specs with pending status', () => { |