mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
38661a6f2b
This commits update the platform-server test structure to add 2 applications in the Angular CLI workspace one based on ngmodules and another standalone. The same E2E suit is ran on both apps. PR Close #49927
8 lines
287 B
TypeScript
8 lines
287 B
TypeScript
import {bootstrapApplication} from '@angular/platform-browser';
|
|
import {appConfig} from './app/app.config';
|
|
import {AppComponent} from './app/app.component';
|
|
|
|
(window as any)['doBootstrap'] = () => {
|
|
bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
|
|
};
|