https://github.com/angular/angular
Raw File
Tip revision: ccda258bc54e38a29d07ffb9e30af3a650e0328d authored by Dylan Hunn on 28 February 2024, 00:06:20 UTC
release: cut the v17.3.0-next.1 release
Tip revision: ccda258
main.ts
// #docregion
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

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

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

// #enddocregion
back to top