transform yaml to object; this is a fork from https://github.com/saimonmoore/jest-yaml-transform (so no flattening of JSON) by Saimon Moore; published as NPM package by Tadeusz Rychter, renamed in order to do so
npm install jest-yaml-transform-not-flattened> transform yaml to object
```
$ npm install --save-dev jest-yaml-transform
package.json
`json``
{
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"yml"
],
"transform": {
"\\.yml$": "jest-yaml-transform"
}
}
}
MIT © akameco