Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update private exports #55103

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -61,7 +61,7 @@ export const PROVIDED_NG_ZONE = new InjectionToken<boolean>(
/**
* Configures change detection scheduling when using ZoneJS.
*/
export const enum SchedulingMode {
export enum SchedulingMode {
/**
* Change detection will run when the `NgZone.onMicrotaskEmpty` observable emits.
* Change detection will also be scheduled to run whenever Angular is notified
Expand Down
Expand Up @@ -461,6 +461,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
Expand Up @@ -506,6 +506,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
Expand Up @@ -383,6 +383,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
3 changes: 3 additions & 0 deletions packages/core/test/bundling/defer/bundle.golden_symbols.json
Expand Up @@ -440,6 +440,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
Expand Up @@ -521,6 +521,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
Expand Up @@ -509,6 +509,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
Expand Up @@ -296,6 +296,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "SimpleChange"
},
Expand Down
Expand Up @@ -440,6 +440,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
3 changes: 3 additions & 0 deletions packages/core/test/bundling/router/bundle.golden_symbols.json
Expand Up @@ -647,6 +647,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "SecurityContext"
},
Expand Down
Expand Up @@ -347,6 +347,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
3 changes: 3 additions & 0 deletions packages/core/test/bundling/todo/bundle.golden_symbols.json
Expand Up @@ -413,6 +413,9 @@
{
"name": "Sanitizer"
},
{
"name": "SchedulingMode"
},
{
"name": "ShadowDomRenderer"
},
Expand Down
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