Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

markdown-loader-jest

gpincheiraa21.9kISC0.1.1

integration of markdown-loader package with jest

readme

markdown-loader-jest

markdown-loader jest plugin

Install

npm install --save-dev markdown-loader-jest

Integration with jest

Define markdown-loader-jest as a transformer for your markdown files included in your source files under test. In the "transform" key for jest configuration in the package.json add the following:

"transform": {
  "^.+\\.md?$": "markdown-loader-jest"
},