(options)
| 29 | function wrapVCSProvider(provider: VCSProvider): VCSProvider { |
| 30 | return { |
| 31 | async findChangedFiles(options) { |
| 32 | const changedFiles = await provider.findChangedFiles(options) |
| 33 | return changedFiles.map(file => resolve(options.root, file)) |
| 34 | }, |
| 35 | } |
| 36 | } |
nothing calls this directly
no test coverage detected