mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Note about the addition of `beforeEach(fakeAsync(inject(…))))` in some tests: `ApplicationRef` is now using `ngOnDestroy` and there is eager, including all of its dependencies which contain `NgZone`. The additional `fakeAsync` in `beforeEach` ensures that `NgZone` uses the fake async zone as parent, and not the root zone. BREAKING CHANGE (via deprecations): - `ApplicationRef.dispose` is deprecated. Destroy the module that was created during bootstrap instead by calling `NgModuleRef.destroy`. - `AplicationRef.registerDisposeListener` is deprecated. Use the `ngOnDestroy` lifecycle hook for providers or `NgModuleRef.onDestroy` instead. - `disposePlatform` is deprecated. Use `destroyPlatform` instead. - `PlatformRef.dipose()` is deprecated. Use `PlatformRef.destroy()` instead. - `PlatformRef.registerDisposeListener` is deprecated. Use `PlatformRef.onDestroy` instead. - `PlaformRef.diposed` is deprecated. Use `PlatformRef.destroyed` instead. |
||
|---|---|---|
| .. | ||
| change_detection_integration_spec.ts | ||
| dynamic_component_loader_spec.ts | ||
| entry_components_integration_spec.ts | ||
| integration_spec.ts | ||
| ng_container_integration_spec.ts | ||
| ng_module_integration_spec.ts | ||
| projection_integration_spec.ts | ||
| query_integration_spec.ts | ||
| query_list_spec.ts | ||
| regression_integration_spec.ts | ||
| security_integration_spec.ts | ||
| view_injector_integration_spec.ts | ||