- Replace babylon and typescript parsers with @babel/parser 7.x - @firsttris
- Renamed the property
pathToJest
tojestCommandLine
in the ProjectWorkspace configuration object to better convey how the property is used internally. Left the originalpathToJest
with a deprecated flag. - @rossknudsen - expose fullName and ancestorTitles to assertions - @connectdotz
- fix parser regression: test.each is being ignored by parser - @connectdotz
- fix typescript parsing error - @connectdotz
- Address orphan process issue - @connectdotz
- Add
--reporters
option support - @jmarceli
-
[breaking change] Replace the
Settings
class with agetSettings
function - stephtrgetSettings
now simply returns a promise resolving to jest's config. -
Improved handling of quoted commands, arguments and escaped spaces - omjadas
-
incorporate
jest-test-typescript-parser
into this package since it has been deprecated from the originaljest
reposition (#9) - connectdotzprojects that link with this package no longer need to add
jest-test-typescript-parser
package separately. The newly exposedparse
function can select the proper parser based on file extension. -
fix a few race condition errors in Runner (#9) - connectdotz
- concurrent Runner output to the same hard coded output file: added optional 'outputFileSuffix' parameter.
- jest process output parser sometimes failed to identify testResults message.
-
TestReconciler
will now report test locations from jest '--testLocationInResults' output -
Snapshot parsing error will no longer throw but returns empty result. (#9) - connectdotz
Turning on the verbose will output caught exception for debugging purpose.
-
upgrade to the latest jest version (24.7.x) - connectdotz
This is the first release that is de-coupled from the Jest release cycle. So, in your head, consider this a 1.0 kinda thing.
-
Updates the
jest-snapshot
dependency to an alpha build of jest 24.xThis is because the codebase was migrated with Jest, and now uses functions from the master builds that don't seem to be available on the latest production versions of jest-snapshot/. If someone wants to backport this to the prod builds look at the usage of the
buildSnapshotResolver
-
Adds the ability to parse describe blocks - jestjs/jest#7215