https://github.com/angular/angular
Raw File
Tip revision: 2668180cc7154805d6a32d8d18c48f958e3dbc30 authored by Joey Perrott on 05 October 2023, 14:58:44 UTC
fixup! ci: migrate snapshot publishing from CircleCI to GHA
Tip revision: 2668180
main.ts
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

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

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