(str)
| 29 | } |
| 30 | |
| 31 | function clearString(str) { |
| 32 | return str.replace(/[^a-zA-Z0-9]/g, '_') |
| 33 | } |
| 34 | |
| 35 | function getTraceDir(testTitle, testFile) { |
| 36 | const hash = createHash('sha256').update(testFile + testTitle).digest('hex').slice(0, 8) |
no outgoing calls
no test coverage detected