From 38a16c5738a3314b45b273350ec92ead62c2d7d0 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 19 Jul 2024 13:30:00 +0200 Subject: [PATCH] remove windows crlf change and mark tests as slow --- tests/playwright-test/only-changed.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/only-changed.spec.ts b/tests/playwright-test/only-changed.spec.ts index 3f14df50b8..a948a107ea 100644 --- a/tests/playwright-test/only-changed.spec.ts +++ b/tests/playwright-test/only-changed.spec.ts @@ -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();