https://github.com/angular/angular
Raw File
Tip revision: 93c0dd86758db6c198143a8b10c827209785776c authored by Jessica Janiuk on 15 November 2023, 20:28:32 UTC
release: cut the v17.1.0-next.0 release
Tip revision: 93c0dd8
main.ts
// #docregion
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

import {AppComponent} from './app/app.component';

bootstrapApplication(AppComponent, {
  providers: [provideProtractorTestingSupport()],
});

// #enddocregion
back to top