```ts @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.