diff options
Diffstat (limited to 'integration/snapshots/jsx-spacing.hmr.debug.jsx')
-rw-r--r-- | integration/snapshots/jsx-spacing.hmr.debug.jsx | 10 |
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)}`); |