diff options
author | 2021-10-06 20:02:40 -0700 | |
---|---|---|
committer | 2021-10-06 20:02:40 -0700 | |
commit | 0d79435ce26f5d97886f58f4f8d191cdc73fb7e6 (patch) | |
tree | 733b935ca9c6c8fbfb88d1ff60bd940c5e0268da /integration/snapshots/styledcomponents-output.js | |
parent | 4ee2fdf1c612f39426b14a2c37c1e46735d9f58e (diff) | |
download | bun-0d79435ce26f5d97886f58f4f8d191cdc73fb7e6.tar.gz bun-0d79435ce26f5d97886f58f4f8d191cdc73fb7e6.tar.zst bun-0d79435ce26f5d97886f58f4f8d191cdc73fb7e6.zip |
Snapshots
Diffstat (limited to 'integration/snapshots/styledcomponents-output.js')
-rw-r--r-- | integration/snapshots/styledcomponents-output.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/snapshots/styledcomponents-output.js b/integration/snapshots/styledcomponents-output.js index df45ce11e..0f81a0ba7 100644 --- a/integration/snapshots/styledcomponents-output.js +++ b/integration/snapshots/styledcomponents-output.js @@ -44,8 +44,8 @@ export function test() { document.body.appendChild(reactEl); ReactDOM.render(jsx(ErrorScreenRoot, { id: "error-el", - children: ["The react child should have this text"] - }, undefined, true, undefined, this), reactEl); + children: "The react child should have this text" + }, undefined, false, undefined, this), reactEl); const style = document.querySelector("style[data-styled]"); console.assert(style, "style tag should exist"); console.assert(style.textContent.split("").every((a) => a.codePointAt(0) < 128), "style tag should not contain invalid unicode codepoints"); |