| 1529 | } |
| 1530 | |
| 1531 | @Directive({ |
| 1532 | selector: '[someDir]', |
| 1533 | standalone: false, |
| 1534 | }) |
| 1535 | class SomeDir { |
| 1536 | @HostBinding('class.foo') fooClass = true; |
| 1537 | } |
| 1538 | |
| 1539 | const ctx = TestBed.configureTestingModule({declarations: [Comp, SomeDir]}).createComponent( |
| 1540 | Comp, |
nothing calls this directly
no test coverage detected
searching dependent graphs…