From 0ca895d11fdca49fb9315266d39a7cb42537bb53 Mon Sep 17 00:00:00 2001 From: Craig Spence Date: Wed, 11 Sep 2024 01:11:38 +1200 Subject: [PATCH] =?UTF-8?q?refactor(betterer=20=F0=9F=94=A7):=20try=20to?= =?UTF-8?q?=20fix=20snapshots?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fixture/src/logging.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fixture/src/logging.ts b/packages/fixture/src/logging.ts index ea94824ec..4e8ad6f7f 100644 --- a/packages/fixture/src/logging.ts +++ b/packages/fixture/src/logging.ts @@ -79,5 +79,5 @@ function replaceProjectPath(str: string): string { } function normalisedPath(str: string): string { - return str.split(path.sep).join(path.posix.sep); + return str.split(path.win32.sep).join(path.posix.sep); }