From c058bdd9016e7c0750c772ae871961e801c596b7 Mon Sep 17 00:00:00 2001 From: David Bushong Date: Thu, 28 Sep 2023 18:12:59 -0700 Subject: [PATCH] test: more git test fixes --- test/test-common.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-common.js b/test/test-common.js index fa225aa..931fd42 100644 --- a/test/test-common.js +++ b/test/test-common.js @@ -66,6 +66,8 @@ async function setupLocalDir2(ghDir) { ); const git = simpleGit(dir).silent(true); await git.clone(ghDir, dir); + await git.addConfig('user.name', 'Tester'); + await git.addConfig('user.email', 'test@example.com'); return [dir, git]; }