https://github.com/angular/angular
Raw File
Tip revision: c6a149156d61f69ed99db31bfbfc4c4f686e22ec authored by Ben Hong on 26 March 2024, 17:31:43 UTC
docs: reduce confusion on tutorial intro and reorder how resources are introduced
Tip revision: c6a1491
main.ts
// #docregion
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

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

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

// #enddocregion
back to top