Releases: skovhus/jest-codemods
Releases · skovhus/jest-codemods
0.2.2
Bug fix: Fix path to jscodeshift
causing the codemod to break if jscodeshift
wasn't installed globally.
0.2.1
Updated documentation about the transformations.
0.2.0
- Support transformation of AVA tests 🎉
- CLI supports an interactive guide using
inquirer
- Tape/AVA:
t.end
and t.fail
support is now handled using Jasmine done
callback
0.1.0
Tape to Jest codemod is now pretty solid.
- added missing conversion of
is
, isNot
, not
, error
, ifError
, ifErr
, iferror
- support for
t.fail
and t.end
using Jasmine done
and done.fail
t.pass
is removed
This adds AVA to Jest codemod (but currently not exposed in the CLI)
0.0.6
Better handling of Tape migrations.
t.end
is only removed if in same scope as test function
t.end
is renamed to done
if used inside other functions
t.pass
is removed (no op)
t.fail
is renamed to done.fail
0.0.4
Bug fix: correct path to transformers.
0.0.3
Pre-transpile code instead of using babel-require
runtime