https://github.com/ratson/gulp-jest-related
Gulp plugin for running Jest related tests.
https://github.com/ratson/gulp-jest-related
Last synced: 11 months ago
JSON representation
Gulp plugin for running Jest related tests.
- Host: GitHub
- URL: https://github.com/ratson/gulp-jest-related
- Owner: ratson
- Created: 2017-01-14T09:39:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T14:15:53.000Z (over 9 years ago)
- Last Synced: 2025-06-30T02:42:24.975Z (12 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gulp-jest-related
[Gulp](https://github.com/gulpjs/gulp) plugin for running [Jest](https://github.com/facebook/jest) related tests.
## Installation
```
npm install gulp-jest-related --save-dev
```
## Usage
Run related tests, e.g. `app.test.js`
```js
import gulp from 'gulp'
import jest from 'gulp-jest-related'
gulp.task('jest', () => gulp
.src('app.js')
.pipe(jest({
// CLI options
coverage: true,
})))
```