An open API service indexing awesome lists of open source software.

https://github.com/nicolindemann/jest-coffee-preprocessor

Simple Coffee Script Preprocessor for Jest
https://github.com/nicolindemann/jest-coffee-preprocessor

coffee-script coffeescript jest jest-plugin

Last synced: 4 months ago
JSON representation

Simple Coffee Script Preprocessor for Jest

Awesome Lists containing this project

README

          

# jest-coffee-preprocessor

[![Greenkeeper badge](https://badges.greenkeeper.io/nicolindemann/jest-coffee-preprocessor.svg)](https://greenkeeper.io/)
Simple Coffee Script Preprocessor for Jest

# Example Installation:

In package.json:

```json
"jest" :{
"transform": {
"^.+\\.jsx?$": "/node_modules/babel-jest",
"^.+\\.coffee$": "/node_modules/jest-coffee-preprocessor/index.js"
},
"moduleFileExtensions": [
"coffee",
"js",
"json",
"jsx"
]
}
```