From 51af4f61adaf9bcd73e6a7dc65ae460f5a5c53e0 Mon Sep 17 00:00:00 2001 From: Tan Li Hau Date: Sat, 16 Apr 2022 22:19:46 +0800 Subject: [PATCH] Update test/helpers.ts Co-authored-by: Ben McCann <322311+benmccann@users.noreply.github.com> --- test/helpers.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/helpers.ts b/test/helpers.ts index ce3571344750..8128f4ddf80f 100644 --- a/test/helpers.ts +++ b/test/helpers.ts @@ -156,7 +156,6 @@ export function normalizeHtml(window, html, { removeDataSvelte = false, preserve } export function normalizeNewline(html: string) { - // return html.trim().replace(/\r\n/g, '\n') return html.replace(/\r\n/g, '\n'); }