aboutsummaryrefslogtreecommitdiff
path: root/test/snippets/styledcomponents-output.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/snippets/styledcomponents-output.js')
-rw-r--r--test/snippets/styledcomponents-output.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/snippets/styledcomponents-output.js b/test/snippets/styledcomponents-output.js
index a79b5e24d..fca6e8407 100644
--- a/test/snippets/styledcomponents-output.js
+++ b/test/snippets/styledcomponents-output.js
@@ -39,18 +39,18 @@ export function test() {
<ErrorScreenRoot id="error-el">
The react child should have this text
</ErrorScreenRoot>,
- reactEl
+ 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"
+ "style tag should not contain invalid unicode codepoints",
);
console.assert(
document.querySelector("#error-el").textContent ===
- "The react child should have this text"
+ "The react child should have this text",
);
ReactDOM.unmountComponentAtNode(reactEl);