From fd57e2d9a630a2ba0d229419e11f39abd97f88bf Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 4 Nov 2021 15:27:29 -0700 Subject: [JSX] Match esbuild behavior for multiline JSX string literals --- integration/snapshots/string-escapes.debug.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'integration/snapshots/string-escapes.debug.js') diff --git a/integration/snapshots/string-escapes.debug.js b/integration/snapshots/string-escapes.debug.js index 4a5c82b05..af9c53abf 100644 --- a/integration/snapshots/string-escapes.debug.js +++ b/integration/snapshots/string-escapes.debug.js @@ -337,10 +337,10 @@ const jsxVariants = jsx(JSXFrag, { data: "\v" }, undefined, false, undefined, this), jsx("div", { - data: "\u2028" + data: "\\u2028" }, undefined, false, undefined, this), jsx("div", { - data: "\u2029" + data: "\\u2029" }, undefined, false, undefined, this), jsx("div", { data: "😊" @@ -392,11 +392,11 @@ const jsxVariants = jsx(JSXFrag, { jsx("div", { children: "\v" }, undefined, false, undefined, this), - jsx("div", {}, "\u2028", false, undefined, this), + jsx("div", {}, "\\u2028", false, undefined, this), jsx("div", { children: "\u2028" }, undefined, false, undefined, this), - jsx("div", {}, "\u2029", false, undefined, this), + jsx("div", {}, "\\u2029", false, undefined, this), jsx("div", { children: "\u2029" }, undefined, false, undefined, this), -- cgit v1.2.3