| 230 | } |
| 231 | |
| 232 | @Component({ |
| 233 | selector: 'my-comp', |
| 234 | template: '<div animationPropDir>Some content</div>', |
| 235 | animations: [trigger('myAnimation', [state('color', style({color: 'red'}))])], |
| 236 | standalone: false, |
| 237 | |
| 238 | changeDetection: ChangeDetectionStrategy.Eager, |
| 239 | }) |
| 240 | class Comp {} |
| 241 | |
| 242 | TestBed.configureTestingModule({ |
| 243 | declarations: [Comp, AnimationPropDir], |
nothing calls this directly
no test coverage detected
searching dependent graphs…