test: fix CR/LF warning on only-changed tests

This commit is contained in:
Max Schmitt 2024-09-24 00:45:52 +02:00
parent 26dc8955d3
commit 0a6b02007c

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));
},