Skip to content

Commit

Permalink
refactor(core): Move private export testing file to src (#55103)
Browse files Browse the repository at this point in the history
This matches the private export approach for files in other packages.

PR Close #55103
  • Loading branch information
atscott committed Mar 28, 2024
1 parent ac0a51c commit 0b450ff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/core/testing/public_api.ts
Expand Up @@ -14,6 +14,5 @@
* Entry point for all public APIs of this package.
*/
export * from './src/testing';
export * from './private_export';

// This file only reexports content of the `src` folder. Keep it that way.
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

export {AllowDetectChangesAndAcknowledgeItCanHideApplicationBugs as ɵAllowDetectChangesAndAcknowledgeItCanHideApplicationBugs} from './src/test_bed_common';
export {AllowDetectChangesAndAcknowledgeItCanHideApplicationBugs as ɵAllowDetectChangesAndAcknowledgeItCanHideApplicationBugs} from './test_bed_common';
1 change: 1 addition & 0 deletions packages/core/testing/src/testing.ts
Expand Up @@ -12,6 +12,7 @@
* Entry point for all public APIs of the core/testing package.
*/

export * from './private_export';
export * from './async';
export {ComponentFixture} from './component_fixture';
export {resetFakeAsyncZone, discardPeriodicTasks, fakeAsync, flush, flushMicrotasks, tick} from './fake_async';
Expand Down

0 comments on commit 0b450ff

Please sign in to comment.