(target, source)
| 15 | import { spawnSync } from 'child_process' |
| 16 | |
| 17 | function deepMerge(target, source) { |
| 18 | return merge(target, source) |
| 19 | } |
| 20 | |
| 21 | export const genTestId = test => { |
| 22 | return clearString(crypto.createHash('sha256').update(test.fullTitle()).digest('base64').slice(0, -2)) |
no outgoing calls
no test coverage detected