mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit updates scripts within `packages/core/testing` to relative imports as a prep work to the upcoming infra updates. PR Close #60232
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
/**
|
|
* @module
|
|
* @description
|
|
* Entry point for all public APIs of the core/testing package.
|
|
*/
|
|
|
|
export * from './async';
|
|
export {ComponentFixture} from './component_fixture';
|
|
export {
|
|
resetFakeAsyncZone,
|
|
discardPeriodicTasks,
|
|
fakeAsync,
|
|
flush,
|
|
flushMicrotasks,
|
|
tick,
|
|
} from './fake_async';
|
|
export {
|
|
TestBed,
|
|
getTestBed,
|
|
TestBedStatic,
|
|
inject,
|
|
InjectSetupWrapper,
|
|
withModule,
|
|
} from './test_bed';
|
|
export {
|
|
TestComponentRenderer,
|
|
ComponentFixtureAutoDetect,
|
|
ComponentFixtureNoNgZone,
|
|
TestModuleMetadata,
|
|
TestEnvironmentOptions,
|
|
ModuleTeardownOptions,
|
|
} from './test_bed_common';
|
|
export * from './test_hooks';
|
|
export * from './metadata_override';
|
|
export {MetadataOverrider as ɵMetadataOverrider} from './metadata_overrider';
|
|
export {
|
|
ɵDeferBlockBehavior as DeferBlockBehavior,
|
|
ɵDeferBlockState as DeferBlockState,
|
|
} from '../../src/core';
|
|
export {DeferBlockFixture} from './defer';
|