https://github.com/angular/angular
Raw File
Tip revision: 6ae1f198e68f1a8529e4b186584e1398b1d3197f authored by Alex Rickabaugh on 30 September 2020, 17:16:17 UTC
release: cut the v11.0.0-next.4 release
Tip revision: 6ae1f19
testing.ts
/**
 * @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.io/license
 */

/**
 * @module
 * @description
 * Entry point for all public APIs of the core/testing package.
 */

export * from './async';
export * from './component_fixture';
export * from './fake_async';
export {TestBed, getTestBed, inject, InjectSetupWrapper, withModule} from './test_bed';
export * from './test_bed_common';
export * from './before_each';
export * from './metadata_override';
export {MetadataOverrider as ɵMetadataOverrider} from './metadata_overrider';
export * from './private_export_testing';
back to top