We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a53da0 commit d00ab1cCopy full SHA for d00ab1c
tests/legacy-cli/e2e/tests/basic/standalone.ts
@@ -22,7 +22,7 @@ import { ng } from '../../utils/process';
22
const STANDALONE_MAIN_CONTENT = `
23
import { Component } from '@angular/core';
24
import { CommonModule } from '@angular/common';
25
-import { bootstrapApplication } from '@angular/platform-browser';
+import { bootstrapApplication, provideProtractorTestingSupport } from '@angular/platform-browser';
26
27
@Component({
28
selector: 'app-root',
@@ -41,7 +41,9 @@ export class AppComponent {
41
isVisible = true;
42
}
43
44
-bootstrapApplication(AppComponent);
+bootstrapApplication(AppComponent, {
45
+ providers: [ provideProtractorTestingSupport() ],
46
+});
47
`;
48
49
export default async function () {
0 commit comments