diff options
Diffstat (limited to 'integration/snapshots/string-escapes.debug.js')
-rw-r--r-- | integration/snapshots/string-escapes.debug.js | 8 |
1 files changed, 4 insertions, 4 deletions
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), |