From 9dad5bef0e4c4bbcd5cb5b2d2407291dde8e9c7b Mon Sep 17 00:00:00 2001 From: Kurtis Rainbolt-Greene Date: Sat, 28 Nov 2020 07:50:41 -0800 Subject: [PATCH] This test was failing once it was converted to javascript --- lib/__tests__/convertCssForEmotion.test.ts | 94 +++++++++++----------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/lib/__tests__/convertCssForEmotion.test.ts b/lib/__tests__/convertCssForEmotion.test.ts index 275c36a..5a9dea4 100644 --- a/lib/__tests__/convertCssForEmotion.test.ts +++ b/lib/__tests__/convertCssForEmotion.test.ts @@ -115,53 +115,6 @@ select.form-control:not([size]):not([multiple]) { const cssForEmotion = `import { css, injectGlobal } from "emotion"; -injectGlobal\`*, *::before, *::after { - box-sizing: inherit; -} - - - -@-ms-viewport { - width: device-width; -} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\`; - export const close = css\` float: right; font-size: 1.5rem; @@ -281,6 +234,53 @@ export const formControl = css\`select&:not([size]):not([multiple]) { color: #868e96; opacity: 1; } + +\`; + +injectGlobal\`*, *::before, *::after { + box-sizing: inherit; +} + + + +@-ms-viewport { + width: device-width; +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \`; `;