We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af3e7f3 commit 2e37d73Copy full SHA for 2e37d73
1 file changed
tests/git.test.ts
@@ -48,6 +48,8 @@ describe('Client', () => {
48
fs.mkdirSync(resolve(cwd, 'git-templates'))
49
50
exec('git init --template=./git-templates --initial-branch=main')
51
+ exec('git config user.name "Tester"')
52
+ exec('git config user.email "tester.modulify@gmail.com"')
53
54
for (let i = 0; i < 20; i++) {
55
const type = commitTypes[Math.round(Math.random() * (commitTypes.length - 1))]
0 commit comments