Package Exports
- gulp-jest
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-jest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-jest
Gulp plugin for the Jest test library
Installation
$ npm install gulp-jestUsage
var jest = require('gulp-jest');
gulp.task('jest', function () {
  return gulp.src('__tests__').pipe(jest({
    config: {
      "preprocessorIgnorePatterns": [
        "<rootDir>/dist/", "<rootDir>/node_modules/"
      ],
      "automock": false
    }
  }));
});
API
jest(options)
options
as per Jest config
License
MIT © Dominic Barker