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
- Host: GitHub
- URL: https://github.com/nicolindemann/jest-coffee-preprocessor
- Owner: nicolindemann
- License: mit
- Created: 2017-05-16T11:26:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T10:39:57.000Z (over 1 year ago)
- Last Synced: 2025-09-29T13:35:06.836Z (8 months ago)
- Topics: coffee-script, coffeescript, jest, jest-plugin
- Language: JavaScript
- Size: 185 KB
- Stars: 6
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jest-coffee-preprocessor
[](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"
]
}
```