1.0.1 • Published 7 years ago

jest-raw-loader v1.0.1

Weekly downloads
82,206
License
MIT
Repository
github
Last release
7 years ago

jest-raw-loader

npm Build Status Code Coverage Code Style: prettier

Jest transformer mimicking webpack-contrib/raw-loader's functionality

Install

$ npm install --save-dev jest-raw-loader

Usage

Use jest's transform configuration options to use this package in your unit tests.

For example use the following to raw load .md and .graphql files:

"jest": {
  "transform": {
    "\\.graphql$": "jest-raw-loader",
    "\\.md$": "jest-raw-loader"
  }
}

License

MIT © Kepler Sticka-Jones