| 877 | |
| 878 | it('should be triggered for all bootstrapped components in case change happens in one of them', (done) => { |
| 879 | @NgModule({ |
| 880 | imports: [BrowserModule], |
| 881 | declarations: [CompA, CompB], |
| 882 | bootstrap: [CompA, CompB], |
| 883 | schemas: [CUSTOM_ELEMENTS_SCHEMA], |
| 884 | providers: [provideZoneChangeDetection()], |
| 885 | }) |
| 886 | class TestModuleA {} |
| 887 | platformBrowser() |
| 888 | .bootstrapModule(TestModuleA) |
| 889 | .then((ref) => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…