aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/styledcomponents-output.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/snapshots/styledcomponents-output.js')
-rw-r--r--integration/snapshots/styledcomponents-output.js4
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");