From 068aecad52ef5a101be588e3033c145b225557a4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 23 Apr 2019 21:41:00 +0100 Subject: [PATCH] Fix existing tests --- test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test.js b/test.js index 0858b50..6276d74 100644 --- a/test.js +++ b/test.js @@ -32,7 +32,7 @@ test('it generates the correct classes with no variants', () => { return generatePluginCss().then(css => { expect(css).toMatchCss(` .test { - display: block; + display: block } `) }) @@ -42,15 +42,15 @@ test('it generates the correct classes with variants', () => { return generatePluginCss({ variants: ['hover', 'focus'] }).then(css => { expect(css).toMatchCss(` .test { - display: block; + display: block } .hover\\:test:hover { - display: block; + display: block } .focus\\:test:focus { - display: block; + display: block } `) })