| 430 | |
| 431 | it('should allow overriding the set of directives and pipes used in a standalone component', () => { |
| 432 | @Directive({ |
| 433 | selector: '[dir]', |
| 434 | host: {'[id]': 'id'}, |
| 435 | }) |
| 436 | class MyStandaloneDirectiveA { |
| 437 | id = 'A'; |
| 438 | } |
| 439 | |
| 440 | @Directive({ |
| 441 | selector: '[dir]', |
nothing calls this directly
no test coverage detected
searching dependent graphs…