2016-08-23 00:17:23 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-08-23 00:17:23 +00:00
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-31 01:07:40 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
|
|
|
|
* Entry point for all public APIs of the core/testing package.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-23 00:17:23 +00:00
|
|
|
export * from './async';
|
2024-01-18 22:09:19 +00:00
|
|
|
export {ComponentFixture} from './component_fixture';
|
2016-08-23 00:17:23 +00:00
|
|
|
export * from './fake_async';
|
2022-07-01 06:33:06 +00:00
|
|
|
export {TestBed, getTestBed, TestBedStatic, inject, InjectSetupWrapper, withModule} from './test_bed';
|
|
|
|
|
export {TestComponentRenderer, ComponentFixtureAutoDetect, ComponentFixtureNoNgZone, TestModuleMetadata, TestEnvironmentOptions, ModuleTeardownOptions} from './test_bed_common';
|
2021-06-13 08:32:57 +00:00
|
|
|
export * from './test_hooks';
|
2016-08-23 00:17:23 +00:00
|
|
|
export * from './metadata_override';
|
2018-08-14 23:27:04 +00:00
|
|
|
export {MetadataOverrider as ɵMetadataOverrider} from './metadata_overrider';
|
2023-09-01 17:29:14 +00:00
|
|
|
export {ɵDeferBlockBehavior as DeferBlockBehavior, ɵDeferBlockState as DeferBlockState} from '@angular/core';
|
|
|
|
|
export {DeferBlockFixture} from './defer';
|