remove windows crlf change and mark tests as slow

This commit is contained in:
Simon Knott 2024-07-19 13:30:00 +02:00 committed by Simon Knott
parent eb19971298
commit 38a16c5738
No known key found for this signature in database
GPG key ID: 8CEDC00028084AEC

View file

@ -47,8 +47,6 @@ const test = baseTest.extend({
`,
});
git(`init --initial-branch=main`);
if (process.platform === 'win32')
git(`config --local core.autocrlf true`);
git(`config --local user.name "Robert Botman"`);
git(`config --local user.email "botty@mcbotface.com"`);
git(`add .`);
@ -58,6 +56,8 @@ const test = baseTest.extend({
},
});
test.slow();
test('should detect untracked files', async ({ runInlineTest, setupRepository }) => {
await setupRepository();