Skip to content

Commit

Permalink
docs: add CSS options to README
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyerburgh committed Apr 9, 2018
1 parent e9c9a2d commit 3f65646
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion README.md
Expand Up @@ -81,4 +81,24 @@ vue-jest compiles the script and template of SFCs into a JavaScript file that Je
}
}
}
```
```

## CSS options

`experimentalCSSCompile`: `Boolean` Default true. Turn off CSS compilation
`hideStyleWarn`: `Boolean` Default false. Hide warnings about CSS compilation
`resources`:

```js
// package.json
{
"jest": {
"globals": {
"vue-jest": {
"hideStyleWarn": true,
"experimentalCSSCompile": true
}
}
}
}
```

0 comments on commit 3f65646

Please sign in to comment.