(directory)
| 83 | } |
| 84 | |
| 85 | function normalizeResolvePath(directory) { |
| 86 | const absolutePath = isAbsolute(directory) ? directory : resolvePath('.', directory); |
| 87 | return absolutePath.replace(/\\/g, '/'); |
| 88 | } |
| 89 | |
| 90 | function deleteSnapshots(config: Config) { |
| 91 | try { |
no outgoing calls
no test coverage detected