From 40bb56e89279c8a816d30f5c8b65377f260be056 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Sun, 22 Oct 2017 18:29:58 +0200 Subject: [PATCH] Fix styled-jsx test (#3147) * Fix styled-jsx test * Make sure the test passes --- test/integration/basic/test/rendering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/basic/test/rendering.js b/test/integration/basic/test/rendering.js index 588dce92..d99cedee 100644 --- a/test/integration/basic/test/rendering.js +++ b/test/integration/basic/test/rendering.js @@ -33,7 +33,7 @@ export default function ({ app }, suiteName, render) { const styleId = $('#blue-box').attr('class') const style = $('style') - expect(style.text().includes(`p.${styleId}{color:blue}`)).toBeTruthy() + expect(style.text().includes(`p.${styleId}{color:blue`)).toBeTruthy() }) test('renders properties populated asynchronously', async () => {