Skip to content

Commit

Permalink
test: fix git configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dbushong committed Sep 29, 2023
1 parent a8ff1e6 commit 5b09c1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ async function setupLocalDir(ghDir, ghGit, main) {
);
const git = simpleGit(dir).silent(true);
await git.clone(ghDir, dir);
await git.addConfig('user.name', 'Tester');
await git.addConfig('user.email', '[email protected]');
await changeSomething(dir);
await git.add(['.']);
await git.commit('init');
Expand Down

0 comments on commit 5b09c1b

Please sign in to comment.