v8.0.0-alpha.1
Pre-release
Pre-release
8.0.0-alpha.1 (2021-06-03)
Bug Fixes
BREAKING CHANGES
- Remove deprecated
waitFormDOMChange - The
timeoutinwaitFor(callback, { interval, timeout } )now uses the same clock asinterval. Previouslytimeoutwas always using the real clock whileintervalwas using the global clock which could've been mocked out. For the old behavior I'd recommendwaitFor(callback, { interval, timeout: Number.PositiveInfinity })and rely on your test runner to timeout considering real timers.