Releases: Nerajno/gulp-jest
Releases · Nerajno/gulp-jest
v4.0.3
v4.0.2
- Fixed deprecated gulp util, thanks @TheDancingCode
- Changed default rootDir to
process.cwd()
as opposed tofile.path
v3.0.1
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
v.1.0.0
v0.5.2
- Welcome Jest 15.0.0
- Refactored code and tests
- Changed options to allow CLI parameters
Upgrade Jest CLI
- upgrades jest-cli to
0.4.0
Upgrade Jest CLI
- upgraded Jest CLI to
0.2.1
Fixes callback error
- callback no longer called twice on test fail
Upgrade React Tools
- Upgrades react-tools from
0.11.1
to0.12.1