From 8c19e10ac22627782cc692cec71a8f9d5929fdb0 Mon Sep 17 00:00:00 2001 From: Jeffrey Way Date: Thu, 20 Aug 2020 10:41:01 -0400 Subject: [PATCH] Fix tests --- test/features/vue.js | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/test/features/vue.js b/test/features/vue.js index 8f29d12a7..19a8c960d 100644 --- a/test/features/vue.js +++ b/test/features/vue.js @@ -19,7 +19,6 @@ test.serial.cb('it appends vue styles to your sass compiled file', t => { color: red; } - .hello { color: blue; }`; @@ -49,7 +48,6 @@ test.serial.cb('it prepends vue styles to your less compiled file', t => { let expected = `body { color: pink; } - .hello { color: blue; }`; @@ -75,8 +73,7 @@ test.serial.cb( File.exists('test/fixtures/fake-app/public/css/vue-styles.css') ); - let expected = ` -.hello { + let expected = `.hello { color: blue; }`; @@ -121,8 +118,7 @@ test.serial.cb('it extracts vue Stylus styles to a dedicated file', t => { compile(t, config => { t.true(File.exists('test/fixtures/fake-app/public/css/components.css')); - let expected = ` -.hello { + let expected = `.hello { margin: 10px; } `; @@ -174,8 +170,7 @@ test.serial.cb('it extracts vue .scss styles to a dedicated file', t => { File.find('test/fixtures/fake-app/public/css/app.css').read() ); - expected = ` -.hello { + expected = `.hello { color: blue; }`; @@ -213,8 +208,7 @@ test.serial.cb('it extracts vue .sass styles to a dedicated file', t => { File.find('test/fixtures/fake-app/public/css/app.css').read() ); - expected = ` -.hello { + expected = `.hello { color: black; }`; @@ -259,8 +253,7 @@ test.serial.cb('it extracts vue Less styles to a dedicated file', t => { compile(t, config => { t.true(File.exists('test/fixtures/fake-app/public/css/components.css')); - let expected = ` -.hello { + let expected = `.hello { color: blue; } `;