Skip to content

v4.0.0-beta.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@staxmanade 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 the maxLaunches value (default is 10).

Updates