Skip to content

Commit 5b09c1b

Browse files
committed
test: fix git configs
1 parent a8ff1e6 commit 5b09c1b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test-common.js

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ async function setupLocalDir(ghDir, ghGit, main) {
4444
);
4545
const git = simpleGit(dir).silent(true);
4646
await git.clone(ghDir, dir);
47+
await git.addConfig('user.name', 'Tester');
48+
await git.addConfig('user.email', '[email protected]');
4749
await changeSomething(dir);
4850
await git.add(['.']);
4951
await git.commit('init');

0 commit comments

Comments
 (0)