Skip to content

v8.0.0-alpha.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 03 Jun 12:31
3ae2702

8.0.0-alpha.1 (2021-06-03)

Bug Fixes

BREAKING CHANGES

  • Remove deprecated waitFormDOMChange
  • The timeout in waitFor(callback, { interval, timeout } ) now uses the same clock as interval. Previously timeout was always using the real clock while interval was using the global clock which could've been mocked out. For the old behavior I'd recommend waitFor(callback, { interval, timeout: Number.PositiveInfinity }) and rely on your test runner to timeout considering real timers.