mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
9 lines
378 B
TypeScript
9 lines
378 B
TypeScript
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';
|
|
import {provideRouter} from '@angular/router';
|
|
|
|
import {AppComponent} from './app/app.component';
|
|
import {appRoutes} from './app/app.routes';
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [provideRouter(appRoutes), provideProtractorTestingSupport()],
|
|
}).catch(console.error);
|