Files
introductionAngular/first-app/src/main.ts
2025-11-03 17:32:55 +01:00

11 lines
392 B
TypeScript

/*
* Protractor support is deprecated in Angular.
* Protractor is used in this example for compatibility with Angular documentation tools.
*/
import {bootstrapApplication, provideProtractorTestingSupport} from '@angular/platform-browser';
import {App} from './app/app';
bootstrapApplication(App, {providers: [provideProtractorTestingSupport()]}).catch((err) =>
console.error(err),
);