Skip to content

Commit

Permalink
fix: support signal model output
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakov Tchenak committed Feb 1, 2025
1 parent 0fc3e91 commit a4da42f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libs/ng-mocks/src/lib/common/func.directive-io-parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ export default function (param: DirectiveIo): DirectiveIoParsed {
return { name };
}

if (name + 'Change' === alias) {
return { name: alias }; // model output

Check warning on line 12 in libs/ng-mocks/src/lib/common/func.directive-io-parse.ts

View check run for this annotation

Codecov / codecov/patch

libs/ng-mocks/src/lib/common/func.directive-io-parse.ts#L12

Added line #L12 was not covered by tests
}

return { name, alias };
}

Expand Down

0 comments on commit a4da42f

Please sign in to comment.