(matches: DirectiveMeta[])
| 1319 | |
| 1320 | describe('directive de-duplication', () => { |
| 1321 | function formatMatches(matches: DirectiveMeta[]): string[] { |
| 1322 | return matches.map((dir) => `${dir.name}:${MatchSource[dir.matchSource]}`); |
| 1323 | } |
| 1324 | |
| 1325 | it('should give precedence to the template-matched directive over a host-directive-based match', () => { |
| 1326 | const matcher = new SelectorMatcher(); |
no test coverage detected
searching dependent graphs…