Files
angular__angular/aio/content/examples/inputs-outputs/src/main.ts

10 lines
279 B
TypeScript

import { bootstrapApplication, provideProtractorTestingSupport } from '@angular/platform-browser';
import {AppComponent} from './app/app.component';
bootstrapApplication(AppComponent, {
providers: [
provideProtractorTestingSupport(), // essential for e2e testing
]
});