We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9981139 + fda0fc4 commit a3f6bd4Copy full SHA for a3f6bd4
test/utils/index_setup.js
@@ -45,18 +45,14 @@ var IndexSetup = {
45
return repository.getCommit(commitOid).then(function(commit) {
46
ourCommit = commit;
47
}).then(function() {
48
- console.log("after creating base commit");
49
return repository.createBranch(ourBranchName, commitOid)
50
.then(function(branch) {
51
- console.log("after creating our branch");
52
ourBranch = branch;
53
return repository.createBranch(theirBranchName, commitOid);
54
});
55
56
})
57
58
- console.log("after creating their commit");
59
-
60
theirBranch = branch;
61
return fse.writeFile(path.join(repository.workdir(), fileName),
62
baseFileContent + theirFileContent);
0 commit comments