| 169 | imports: Type<any>[] = [], |
| 170 | ): Promise<any> { |
| 171 | @NgModule({ |
| 172 | imports: [BrowserModule, ...imports], |
| 173 | declarations: [cmpType], |
| 174 | bootstrap: [cmpType], |
| 175 | providers: [provideZoneChangeDetection(), ...providers], |
| 176 | schemas: [CUSTOM_ELEMENTS_SCHEMA], |
| 177 | }) |
| 178 | class TestModule {} |
| 179 | return platformBrowser(platformProviders).bootstrapModule(TestModule); |
| 180 | } |
| 181 |
nothing calls this directly
no test coverage detected
searching dependent graphs…