From 16cd2d614dcf00328e8c5c37075655acd9a97163 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..e05f02b 100644 --- a/test/test-common.js +++ b/test/test-common.js @@ -65,6 +65,8 @@ async function setupLocalDir2(ghDir) { path.join(tmpDir, 'feature-test-local2-XXXXXXX') ); const git = simpleGit(dir).silent(true); + await git.addConfig('user.name', 'Tester'); + await git.addConfig('user.email', 'test@example.com'); await git.clone(ghDir, dir); return [dir, git]; }