11 lines
392 B
TypeScript
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),
|
|
);
|