diff options
author | 2021-11-05 01:33:09 -0700 | |
---|---|---|
committer | 2021-11-05 01:33:09 -0700 | |
commit | 3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca (patch) | |
tree | 7366143d324d487614662b03d639e388af03b2c9 /integration/snapshots/string-escapes.js | |
parent | d0823beef508c6f19025070ff2b8039a7346eee8 (diff) | |
download | bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.tar.gz bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.tar.zst bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.zip |
:camera: Snapshotsbun-v0.0.45
Diffstat (limited to '')
-rw-r--r-- | integration/snapshots/string-escapes.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/integration/snapshots/string-escapes.js b/integration/snapshots/string-escapes.js index 4a5c82b05..af9c53abf 100644 --- a/integration/snapshots/string-escapes.js +++ b/integration/snapshots/string-escapes.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), |