A YAML transform for jest
npm install yaml-jest
yarn install --dev yaml-jest
`Usage
Add an entry to moduleFileExtensions and transform to your project's Jest config:`jsx
{
"moduleFileExtensions": ["js", "yaml"],
"transform": {
"\\.yaml$": "yaml-jest",
"\\.js?$": "babel-jest"
},
}
``