# jest-runner-multi

> Run multiple jest runners within one project

Latest version **0.0.1** (published 2018-01-30) · MIT license · 0 weekly downloads

## Install

```sh
npm install jest-runner-multi
pnpm add jest-runner-multi
yarn add jest-runner-multi
bun add jest-runner-multi
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2018-01-30 |
| First published | 2018-01-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Daniel Schmidt |
| Maintainers | dschmidt |
| Keywords | jest, jest-runner |

## Links

- npm: https://www.npmjs.com/package/jest-runner-multi
- Repository: https://github.com/DanielMSchmidt/jest-runner-multi
- Homepage: https://github.com/DanielMSchmidt/jest-runner-multi#readme
- Issues: https://github.com/DanielMSchmidt/jest-runner-multi/issues
- npm.io page: https://npm.io/package/jest-runner-multi

## Dependencies (1)

- [create-jest-runner](https://npm.io/package/create-jest-runner.md) ^0.2.0

## Recent versions

- 0.0.1 (latest) — 2018-01-30
- 0.0.2-3 (next) — 2018-01-31
- 0.0.2-2 — 2018-01-30

## README

# Jest Runner Multi [![Build Status](https://travis-ci.org/DanielMSchmidt/jest-runner-multi.svg?branch=master)](https://travis-ci.org/DanielMSchmidt/jest-runner-multi)

If you want to have multiple jest runners in the same project, this project is for you.

## Configuration

Your `package.json` looks like this:

```json
{
  "jest": {
    "runner": "jest-runner-multi",
    "moduleFileExtensions": [
      "css",
      "js"
    ],
    "testMatch": [
      "**/*.{css,js}"
    ]
  },
  "jest-runner-multi": {
    "**/*.test.js": "jest", // default jest runner
    "**/*.js": "jest-runner-eslint", // additional eslint runner for eslint
    "**/*.css": "jest-runner-stylelint", // runner for css
  }
}
```

---
_Source: https://npm.io/package/jest-runner-multi · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
