test: fix CR/LF warning on only-changed tests (#32772)

This commit is contained in:
Max Schmitt 2024-09-24 01:32:36 +02:00 committed by GitHub
parent c7a5278fb3
commit 8557b98aee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,6 +26,7 @@ const test = baseTest.extend<{ git(command: string): void }>({
git(`init --initial-branch=main`);
git(`config --local user.name "Robert Botman"`);
git(`config --local user.email "botty@mcbotface.com"`);
git(`config --local core.autocrlf false`);
await use((command: string) => git(command));
},