Skip to content

Releases: Nerajno/gulp-jest

v4.0.3

09 Apr 01:22
Compare
Choose a tag to compare
  • Update dependencies
  • Ensure build fails when coverage threshold is breached
  • Disambiguate between snapshot and coverage threshold failures

NOTE: v4.0.3 works with Jest 25

v4.0.2

01 Mar 06:45
Compare
Choose a tag to compare
  • Fixed deprecated gulp util, thanks @TheDancingCode
  • Changed default rootDir to process.cwd() as opposed to file.path

v3.0.1

02 Nov 21:05
Compare
Choose a tag to compare

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',
  }))

v.2.0.0

31 May 18:10
Compare
Choose a tag to compare

Support for Jest 20.

Thanks @Fulkman for the contribution and @ai for keep pushing on the change to happen.

v.1.0.0

04 Jan 07:09
Compare
Choose a tag to compare
  • Moved jest to peerDependencies

Big shout out to @jmurzy for the contribution

v0.5.2

02 Sep 00:11
Compare
Choose a tag to compare
  • Welcome Jest 15.0.0
  • Refactored code and tests
  • Changed options to allow CLI parameters

Upgrade Jest CLI

23 Feb 18:21
Compare
Choose a tag to compare
  • upgrades jest-cli to 0.4.0

Upgrade Jest CLI

04 Jan 09:59
Compare
Choose a tag to compare
  • upgraded Jest CLI to 0.2.1

Fixes callback error

22 Dec 09:39
Compare
Choose a tag to compare
  • callback no longer called twice on test fail

Upgrade React Tools

15 Dec 09:29
Compare
Choose a tag to compare