From e44e0a3f3b39f96c83d6e361469ae7fec20a5521 Mon Sep 17 00:00:00 2001 From: GP Date: Sat, 6 May 2023 11:10:06 +0530 Subject: [PATCH] fix(tests): more windows-specific test fixes --- test/main.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/main.test.ts b/test/main.test.ts index 3606aa23..d6568b7d 100644 --- a/test/main.test.ts +++ b/test/main.test.ts @@ -763,7 +763,7 @@ test('🧪 run() should throw an error if the before-build step throws an error. PLATFORM === 'win32' ? `[command]${EXE_PATH_PREFIX} "${DEFAULT_WORKDIR}\\test.${EXE_EXT} before-build"` : `[command]${DEFAULT_WORKDIR}/test.${EXE_EXT} before-build`, - `::error::The process '${DEFAULT_WORKDIR}/test.${EXE_EXT}' failed with exit code 69`, + PLATFORM === 'win32' ? `::error::The process '${DEFAULT_WORKDIR}\\test.${EXE_EXT}' failed with exit code 69` : `::error::The process '${DEFAULT_WORKDIR}/test.${EXE_EXT}' failed with exit code 69`, `::error::🚨 CC Reporter before-build checkin failed!`, ``, ].join(EOL),