1.0.0 • Published 6 years ago

jsconfig-paths-jest-mapper v1.0.0

Weekly downloads
85
License
MIT
Repository
-
Last release
6 years ago

jsconfig-paths-jest-mapper

Use this to load modules whose location is specified in the paths section of jsconfig.json when using jest.

How to install

yarn add --dev jsconfig-paths-jest-mapper

or

npm install --save-dev jsconfig-paths-jest-mapper

How to use

In your jest config add this:

const JsConfigPathsMapper = require('jsconfig-paths-jest-mapper');

module.exports = {
  ...
  moduleNameMapper: new JsConfigPathsMapper(/* { configFileName: "path/to/jsconfig.json" } */);
  ...
}

Options

configFile (string) (default='jsconfig.json')

Allows you to specify where to find the configuration file.

How to test

To run the provided tests:

yarn test
1.0.0

6 years ago