Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyWay committed Aug 20, 2020
1 parent 8f1a87e commit 8c19e10
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions test/features/vue.js
Expand Up @@ -19,7 +19,6 @@ test.serial.cb('it appends vue styles to your sass compiled file', t => {
color: red;
}
.hello {
color: blue;
}`;
Expand Down Expand Up @@ -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;
}`;
Expand All @@ -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;
}`;

Expand Down Expand Up @@ -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;
}
`;
Expand Down Expand Up @@ -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;
}`;

Expand Down Expand Up @@ -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;
}`;

Expand Down Expand Up @@ -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;
}
`;
Expand Down

0 comments on commit 8c19e10

Please sign in to comment.