v4.0.0-beta.1
Pre-release
Pre-release
staxmanade
released this
27 Mar 19:35
·
662 commits
to master
since this release
✨ ✨ NEW and Shiny ✨ ✨
- New configuration options:
// Default to `false` - launching each diff tool in the background, failing the test and // moving on to the next test. If `true` will launch the diff tool and block/wait (if diff tool supports this) until // the user exits the diff tool before continuing on with the rest of the tests. blockUntilReporterExits: false, // The number of reporters (diff tools) launched before before approval tests stops launching new reporters. // This is to avoid overloading a system with too many processes. // NOTE: This value is only used if `blockUntilReporterExits` is `false`. maxLaunches: 10
- Per the
maxLaunches
in the config above we do not continue launching diff tools once we've reached themaxLaunches
value (default is10
).
Updates
- Fix an issue where
null
could fail a verify: #85 (Thanks @cuzzlor) - Doc update/fix #95 (Thanks @alexanderbird and @claremacrae)
- Updated various npm dependencies
- Tons of internal refactorings