From 03006768ca71dfd610ad84f4ed20010061939ec4 Mon Sep 17 00:00:00 2001 From: Cacie Prins Date: Thu, 19 Dec 2024 14:47:28 -0500 Subject: [PATCH] remove stack_utils attempt at normalizing wsp --- packages/driver/src/cypress/stack_utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/driver/src/cypress/stack_utils.ts b/packages/driver/src/cypress/stack_utils.ts index d6ecf6fdee8a..2164f0e79e83 100644 --- a/packages/driver/src/cypress/stack_utils.ts +++ b/packages/driver/src/cypress/stack_utils.ts @@ -43,7 +43,7 @@ const stackWithContentAppended = (err, stack: string = '') => { const normalizedContent = normalizeStackIndentation(appendToStack.content) const content = $utils.indent(normalizedContent, 2) - return `${stack.trimEnd()}\n\n\n${appendToStack.title}:\n${content}` + return `${stack}\n\n${appendToStack.title}:\n${content}` } const stackWithLinesRemoved = (stack, cb) => {