We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@Component({ template: `` }) class Counter { ngOnChanges() { throw new Error("should not be called") } } await render(Counter)
Expected: nothing Actual: Error thrown
It should only call ngOnChanges if inputs are overridden.