@ineentho/jest-jspm

1.0.0 • Public • Published

Coverage Status npm Version CircleCI

jest-jspm

A Helper to generate 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

Usage

Install:

$ npm install --save-dev jest-jspm

In your code:

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)

Readme

Keywords

Package Sidebar

Install

npm i @ineentho/jest-jspm

Weekly Downloads

0

Version

1.0.0

License

WTFPL

Unpacked Size

12.7 kB

Total Files

13

Last publish

Collaborators

  • ineentho