We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8ff1e6 commit 5b09c1bCopy full SHA for 5b09c1b
test/test-common.js
@@ -44,6 +44,8 @@ async function setupLocalDir(ghDir, ghGit, main) {
44
);
45
const git = simpleGit(dir).silent(true);
46
await git.clone(ghDir, dir);
47
+ await git.addConfig('user.name', 'Tester');
48
+ await git.addConfig('user.email', '[email protected]');
49
await changeSomething(dir);
50
await git.add(['.']);
51
await git.commit('init');
0 commit comments