mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Guide pages do not mention `NgModule` so they are untouched (and not "reviewed" either). All code was migrated, including code in the `template-expression-operators` folder despite it only being referenced in the “archived” guide, `template-expression-operators.md`. PR Close #51364
7 lines
354 B
TypeScript
7 lines
354 B
TypeScript
// Archived: see only referencing guide, `template-expression-operators.md`.
|
|
import { bootstrapApplication, provideProtractorTestingSupport } from '@angular/platform-browser';
|
|
|
|
import { AppComponent } from './app/app.component';
|
|
|
|
bootstrapApplication(AppComponent, { providers: [provideProtractorTestingSupport()] })
|
|
.catch(err => console.error(err));
|