Skip to content

Commit d94738e

Browse files
committed
fix: do not compile scss
1 parent 15b899a commit d94738e

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

lib/logger.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
module.exports.info = function info (msg) {
2-
console.info('\n[vue-jest] Info: ' + (msg) + '\n')
2+
console.info('\n[vue-jest]: ' + (msg) + '\n')
3+
}
4+
5+
module.exports.warn = function info (msg) {
6+
console.warn('\n[vue-jest]: ' + (msg) + '\n')
37
}

lib/process.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const extractPropsFromFunctionalTemplate = require('./extract-props')
99
const fs = require('fs')
1010
const join = require('path').join
1111
const cssExtract = require('extract-from-css')
12-
12+
const logger = require('./logger')
1313
const splitRE = /\r?\n/g
1414

1515
function processScript (scriptPart) {
@@ -101,11 +101,16 @@ module.exports = function (src, path) {
101101
if (Array.isArray(parts.styles) && parts.styles.length > 0) {
102102
const styleStr = parts.styles.map(ast => {
103103
if (!module) return
104+
if (/^scss|sass/.test(ast.lang)) {
105+
logger.warn('scss and sass are not currently compiled by vue-jest')
106+
return false
107+
}
108+
104109
const moduleName = ast.module === true ? '$style' : ast.module
105110
const styleObj = processStyle(ast)
106111

107112
return '\n this[\'' + moduleName + '\'] = ' + JSON.stringify(styleObj)
108-
})
113+
}).filter(_ => _)
109114

110115
if (styleStr.length !== 0) {
111116
output += '\n;(function() {' +

test/Babel.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ test('logs info when there is no .babelrc', () => {
5252

5353
jestVue.process(fileString, filePath)
5454
try {
55-
expect(info).toHaveBeenCalledWith('\n[vue-jest] Info: no .babelrc found, skipping babel compilation\n')
55+
expect(info).toHaveBeenCalledWith('\n[vue-jest]: no .babelrc found, skipping babel compilation\n')
5656
} catch (err) {
5757
renameSync(tempPath, babelRcPath)
5858
throw err

test/resources/Sass.vue

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div class="testA"></div>
3+
</template>
4+
5+
<style lang="scss">
6+
@import "./styles/transitions";
7+
8+
.testA {
9+
background-color: red;
10+
}
11+
</style>
12+
13+
<style lang="sass">
14+
$primary-color: #333
15+
</style>

test/scss.spec.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { shallow } from 'vue-test-utils'
2+
import Sass from './resources/Sass.vue'
3+
4+
describe('processes .vue file with Stylus style', () => {
5+
it('does not error on scss or sass', () => {
6+
const wrapper = shallow(Sass)
7+
expect(wrapper.classes()).toContain('testA')
8+
})
9+
})

0 commit comments

Comments
 (0)