v11.0.0-beta.2
Pre-release
Pre-release
11.0.0-beta.2 (2021-11-24)
Features
BREAKING CHANGES
rerenderhas been renamed tochange.
Thechangemethod keeps the current fixture intact and invokesngOnChanges.
The new rerender method destroys the current component and creates a new instance with the updated properties.
BEFORE:
const { rerender } = render(...)
rerender({...})AFTER:
const { change } = render(...)
change({...})