(helpers)
| 12 | // --------------------------------------------------------------------------- |
| 13 | |
| 14 | export function pickActingHelper(helpers) { |
| 15 | for (const name of Container.STANDARD_ACTING_HELPERS) { |
| 16 | if (helpers[name]) return helpers[name] |
| 17 | } |
| 18 | return null |
| 19 | } |
| 20 | |
| 21 | export function traceDirFor(testFile, testTitle, baseDir) { |
| 22 | const hash = crypto.createHash('sha256').update((testFile || '') + (testTitle || '')).digest('hex').slice(0, 8) |
no outgoing calls
no test coverage detected