An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

[![Coverage Status](https://coveralls.io/repos/github/yoavniran/jest-jspm/badge.svg?branch=master)](https://coveralls.io/github/yoavniran/jest-jspm?branch=master)
[![npm Version](https://img.shields.io/npm/v/jest-jspm.svg)](https://www.npmjs.com/package/jest-jspm)
[![CircleCI](https://circleci.com/gh/yoavniran/jest-jspm.svg?style=svg)](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)