You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
avoid using fixture.detectChanges() when possible
but since the generated ones already have them most people will forget, or not even know that they should instead using fixture.whenStable
Describe the solution you'd like
new projects should have the app.spec.ts file use fixture.whenStable
generated components should not have fixture.detectChanges() added at beforeEach
generated components should have await fixture.whenStable() added at beforeEach