A preprocessor to help use LiveScript with Jest
Simple LiveScript Preprocessor for Jest


----
Install with npm or yarn:
``bash
npm i livescript-jest
yarn add livescript-jest
`
In your package.json or jest.config.json specify ".ls" files preprocessor:
`json``
"jest": {
"transform": {
"^.+\\.ls$": "livescript-jest",
},
"moduleFileExtensions": [
"ls",
]
}