Pegjs transformer for jest
npm install pegjs-jest-transformerSimple module to compile pegjs files for Jest testing.
#### Installation
```
$ npm i -D pegjs-jest-transformer
#### Jest configuration
Under transform object, and a mapper to the transformer. Below is an example of mapping pegjs files.
`JSON``
"transform": {
"^.+\\.pegjs?$": "pegjs-jest-transformer"
}