-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61ee8bc
commit 746d6af
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,6 +125,12 @@ async function inTemporaryHydrogenRepo( | |
expect(await fileExists(joinPath(tmpDir, '/.git/config'))).toBeTruthy(); | ||
|
||
if (cleanGitRepo) { | ||
await execa('git', [ | ||
'config', | ||
'--global user.email', | ||
'"[email protected]"', | ||
]); | ||
await execa('git', ['config', '--global user.name', '"Hydrogen Test"']); | ||
await execa('git', ['add', 'package.json'], {cwd: tmpDir}); | ||
await execa('git', ['commit', '-m', 'initial commit'], {cwd: tmpDir}); | ||
} | ||
|