We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b09c1b commit c058bddCopy full SHA for c058bdd
test/test-common.js
@@ -66,6 +66,8 @@ async function setupLocalDir2(ghDir) {
66
);
67
const git = simpleGit(dir).silent(true);
68
await git.clone(ghDir, dir);
69
+ await git.addConfig('user.name', 'Tester');
70
+ await git.addConfig('user.email', '[email protected]');
71
return [dir, git];
72
}
73
0 commit comments