refactor(ct-angular): fix input forwarding

This commit is contained in:
Younes Jaaidi 2024-02-23 01:21:54 +01:00
parent 994bf21288
commit 048cb7dd8a
No known key found for this signature in database
GPG key ID: 3126C5717BDF3241

View file

@ -116,8 +116,8 @@ async function __pwRenderComponent(component) {
const fixture = TestBed.createComponent(WrapperComponent);
fixture.nativeElement.id = 'root';
__pwUpdateProps(fixture, component.options?.props);
__pwUpdateEvents(fixture, component.options?.on);
__pwUpdateProps(fixture, component.props);
__pwUpdateEvents(fixture, component.on);
fixture.autoDetectChanges();