From 6e2f581a3c7a40573dfc374cc972a4c87cf72ed4 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Tue, 23 Jul 2024 12:44:19 +0200 Subject: [PATCH] toPosixPath is no longer needed now that were matching on file paths directly --- packages/playwright/src/runner/vcs.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/playwright/src/runner/vcs.ts b/packages/playwright/src/runner/vcs.ts index 48d0cf3577..5ef75e8be4 100644 --- a/packages/playwright/src/runner/vcs.ts +++ b/packages/playwright/src/runner/vcs.ts @@ -15,7 +15,6 @@ */ import childProcess from 'child_process'; -import { toPosixPath } from 'playwright-core/lib/utils'; import { affectedTestFiles } from '../transform/compilationCache'; import path from 'path'; @@ -48,5 +47,5 @@ export async function detectChangedFiles(baseCommit: string): Promise