https://github.com/angular/angular
Raw File
Tip revision: 710a24a7d058143e94cbc2db905523bfeb257397 authored by Andrew Kushnir on 20 November 2023, 19:39:23 UTC
release: cut the v17.0.4 release
Tip revision: 710a24a
main.ts
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

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

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