(test)
| 21 | var oid = "fce88902e66c72b5b93e75bdb5ae717038b221f6"; |
| 22 | |
| 23 | function reinitialize(test) { |
| 24 | return Repository.open(reposPath) |
| 25 | .then(function(repository) { |
| 26 | test.repository = repository; |
| 27 | |
| 28 | return repository.getCommit(oid); |
| 29 | }) |
| 30 | .then(function(commit) { |
| 31 | test.commit = commit; |
| 32 | }); |
| 33 | } |
| 34 | |
| 35 | function commitFile(repo, fileName, fileContent, commitMessage) { |
| 36 | var index; |
no outgoing calls
no test coverage detected
searching dependent graphs…