( filePath: string )
| 11 | } |
| 12 | |
| 13 | export const buildCertification = ( |
| 14 | filePath: string |
| 15 | ): { |
| 16 | challenges: CertificationChallenge[]; |
| 17 | } => ({ |
| 18 | challenges: [load(readFileSync(filePath, 'utf8')) as CertificationChallenge] |
| 19 | }); |
no outgoing calls
no test coverage detected