1.0.1 • Published 5 years ago

jest-transform-stub-named v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

jest-transform-stub-named

Jest doesn't handle non JavaScript assets by default.

You can use this module to avoid errors when importing non JavaScript assets.

Forked from jest-transform-stub the difference is that this library mocks every media file to return its filename. Makes it possible to test that the correct images are loaded for components.

Usage

npm install --save-dev jest-transform-stub-named

In your Jest config, add jest-transform-stub-named to transform non JavaScript assets you want to stub:

{
  "jest": {
    // ..
    "transform": {
      "^.+\\.js$": "babel-jest",
      ".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub-named"
    }
  }
}
1.0.1

5 years ago

1.0.0

5 years ago