https://github.com/yoavniran/jest-jspm
converts jspm aliasing config into jest mapping config
https://github.com/yoavniran/jest-jspm
Last synced: about 1 year ago
JSON representation
converts jspm aliasing config into jest mapping config
- Host: GitHub
- URL: https://github.com/yoavniran/jest-jspm
- Owner: yoavniran
- License: wtfpl
- Created: 2017-03-13T08:54:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T14:02:08.000Z (about 8 years ago)
- Last Synced: 2025-03-24T08:55:13.066Z (about 1 year ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://coveralls.io/github/yoavniran/jest-jspm?branch=master)
[](https://www.npmjs.com/package/jest-jspm)
[](https://circleci.com/gh/yoavniran/jest-jspm)
# jest-jspm
A Helper to generate [Jest](https://facebook.github.io/jest/) configuration for a JSPM/SystemJS based application.
Since System JS applies its own logic for how to resolve dependencies Jest cannot locate them while running.
This library helps you test your app with Jest by generating the correct mappings configuration Jest understands.
> Gulp users see: [gulp-jest-jspm](https://www.npmjs.com/package/gulp-jest-jspm)
## Usage
Install:
```bash
$ npm install --save-dev jest-jspm
```
In your code:
```javascript
import makeJestConfig from "jest-jspm";
const jestConfig = makeJestConfig({
//...options
});
```
The options accepted by the make method are:
> **jestConfig** - config object or string path to config json file (default: {})
> **jestOptions** - config object passed to the Jest-CLI (for example {debug: true}) (default: undefined)
> **systemJs** - location of system js (default: "./jspm_packages/system")
> **sjsConfigFile** - location of System JS config file (default: "./config")
> **loadSjsConfFile** - whether to load the System JS config file (default: true)
> **jspmPackages** - location of jspm packages (default: "./jspm_packages")
> **nodeModules** - location of node modules dir (default: "./node_modules")
> **displayWarnings** - whether the plugin will output warnings to console (default: false)