diff options
Diffstat (limited to 'integration/snapshots/styledcomponents-output.debug.js')
-rw-r--r-- | integration/snapshots/styledcomponents-output.debug.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/snapshots/styledcomponents-output.debug.js b/integration/snapshots/styledcomponents-output.debug.js index df45ce11e..0f81a0ba7 100644 --- a/integration/snapshots/styledcomponents-output.debug.js +++ b/integration/snapshots/styledcomponents-output.debug.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"); |