aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/jsx-spacing.hmr.debug.jsx
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-11-06 19:22:13 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-11-06 19:22:13 -0700
commit958520f5575f5def9e98c1cb6516b4e82c01605c (patch)
tree039dd8e54cca9c92f5b8f08b650eeeb60dbe020a /integration/snapshots/jsx-spacing.hmr.debug.jsx
parent12c311da3f45093b7659fc85882f9ff1d7a03bd1 (diff)
downloadbun-958520f5575f5def9e98c1cb6516b4e82c01605c.tar.gz
bun-958520f5575f5def9e98c1cb6516b4e82c01605c.tar.zst
bun-958520f5575f5def9e98c1cb6516b4e82c01605c.zip
Debug snapshots
Diffstat (limited to 'integration/snapshots/jsx-spacing.hmr.debug.jsx')
-rw-r--r--integration/snapshots/jsx-spacing.hmr.debug.jsx10
1 files changed, 9 insertions, 1 deletions
diff --git a/integration/snapshots/jsx-spacing.hmr.debug.jsx b/integration/snapshots/jsx-spacing.hmr.debug.jsx
index d5679d1d4..8d45ec417 100644
--- a/integration/snapshots/jsx-spacing.hmr.debug.jsx
+++ b/integration/snapshots/jsx-spacing.hmr.debug.jsx
@@ -39,7 +39,15 @@ line4 no trailing space 'single quote' \\t\\f\\v\\uF000 \`template string\`
line6 no trailing space
line7 trailing newline that \${terminates} the string literal
`;
- console.assert(bun === esbuild, `strings did not match: ${JSON.stringify({
+ const tsc = `line1
+line2 trailing space
+
+line4 no trailing space 'single quote' \\t\\f\\v\\uF000 \`template string\`
+
+line6 no trailing space
+line7 trailing newline that \${terminates} the string literal
+`;
+ console.assert(bun === esbuild && bun === tsc, `strings did not match: ${JSON.stringify({
received: bun,
expected: esbuild
}, null, 2)}`);