https://github.com/angular/angular
Raw File
Tip revision: a5b5b7d5ef84b9852d2115dd7a764f4ab3299379 authored by Joey Perrott on 17 April 2024, 17:57:53 UTC
refactor: migrate core/primitives to prettier formatting (#55387)
Tip revision: a5b5b7d
main.ts
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';

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

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