We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80fe4bb commit d7278b8Copy full SHA for d7278b8
test/fixtures/test-repository.fixture.ts
@@ -42,6 +42,9 @@ export default class TestRepositoryFixture {
42
}
43
mkdirSync(this.location);
44
execSync(`git -C ${this.location} init`);
45
+ execSync(`git config user.email "contact@example.com"`);
46
+ execSync(`git config user.name "John Doe"`);
47
+ execSync(`git config init.defaultBranch main`);
48
49
this.#files.forEach((file) => {
50
new VersionedFileFixture(this.location)
0 commit comments