Skip to content

v3.0.1

Compare
Choose a tag to compare
@alansouzati alansouzati released this 02 Nov 21:05

Welcome Jest 21.

If you want to migrate just make sure to remove config entry from your object, for example:

With gulp-jest v2 you did:

gulp.src('__tests__')
  .pipe(jest({
    config: {
      rootDir: process.cwd(),
      testEnvironment: 'node',
    }
  }))

now you do:

gulp.src('__tests__')
  .pipe(jest({
    rootDir: process.cwd(),
    testEnvironment: 'node',
  }))