(event: AnimationCallbackEvent)
| 987 | class TestComponent { |
| 988 | count = signal(0); |
| 989 | slideIn(event: AnimationCallbackEvent) { |
| 990 | this.count.update((c) => (c += 1)); |
| 991 | event.animationComplete(); |
| 992 | } |
| 993 | } |
| 994 | TestBed.configureTestingModule({animationsEnabled: true}); |
| 995 |
nothing calls this directly
no test coverage detected