| 503 | it('initializes modules inside the NgZone when using `provideZoneChangeDetection`', async () => { |
| 504 | let moduleInitialized = false; |
| 505 | @NgModule({}) |
| 506 | class SomeModule { |
| 507 | constructor() { |
| 508 | expect(NgZone.isInAngularZone()).toBe(true); |
| 509 | moduleInitialized = true; |
| 510 | } |
| 511 | } |
| 512 | @Component({ |
| 513 | template: '', |
| 514 | selector: 'hello-app', |
nothing calls this directly
no test coverage detected
searching dependent graphs…