From c51ddcad18a4bdd5ef4abd73bc8e7756d2fb1b98 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 ce35713447..8128f4ddf8 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'); }