Skip to content

Commit 5c3cbb6

Browse files
authored
docs: replaced the map with the forEach (#27244)
1 parent 6a85c29 commit 5c3cbb6

File tree

1 file changed

+1
-1
lines changed
  • integration/harness-e2e-cli/src

1 file changed

+1
-1
lines changed

integration/harness-e2e-cli/src/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ getTestBed().initTestEnvironment(BrowserDynamicTestingModule, platformBrowserDyn
2424
// Then we find all the tests.
2525
const context = require.context('./', true, /\.spec\.ts$/);
2626
// And load the modules.
27-
context.keys().map(context);
27+
context.keys().forEach(context);

0 commit comments

Comments
 (0)