(testName: string, count: number)
| 16 | // TODO: rewrite and clean up |
| 17 | |
| 18 | export function testNameToKey(testName: string, count: number): string { |
| 19 | return `${testName} ${count}` |
| 20 | } |
| 21 | |
| 22 | export function keyToTestName(key: string): string { |
| 23 | if (!/ \d+$/.test(key)) { |
no outgoing calls
no test coverage detected