(description: string, fullName?: string)
| 14 | } from '..'; |
| 15 | |
| 16 | const makeSpec = (description: string, fullName?: string): SpecLike => ({ |
| 17 | description, |
| 18 | getFullName: () => fullName ?? description, |
| 19 | }); |
| 20 | |
| 21 | const makeSuite = ( |
| 22 | description: string, |