From 729d445b6885f69dd2c6355f38707bd42851c791 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Wed, 22 Jun 2022 23:21:48 -0700 Subject: change the directory structure --- integration/snippets/custom-emotion-jsx/file.jsx | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 integration/snippets/custom-emotion-jsx/file.jsx (limited to 'integration/snippets/custom-emotion-jsx/file.jsx') diff --git a/integration/snippets/custom-emotion-jsx/file.jsx b/integration/snippets/custom-emotion-jsx/file.jsx deleted file mode 100644 index c00cb0543..000000000 --- a/integration/snippets/custom-emotion-jsx/file.jsx +++ /dev/null @@ -1,15 +0,0 @@ -import * as ReactDOM from "react-dom"; -export const Foo = () =>
; - -export function test() { - const element = document.createElement("div"); - element.id = "custom-emotion-jsx"; - document.body.appendChild(element); - ReactDOM.render(, element); - const style = window.getComputedStyle(element.firstChild); - if (!(style["content"] ?? "").includes("it worked!")) { - throw new Error('Expected "it worked!" but received: ' + style["content"]); - } - - return testDone(import.meta.url); -} -- cgit v1.2.3