/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/testing/src/testing.ts
48 строк
1 KB
Kristiyan Kostadinov
feat(core): support bindings in TestBed (#62040)
17 июн 2025, 12:49
17 июн 2025, 12:49
2e0c98b
Код
Авторство
О чём код?
/** * @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, TestComponentOptions, } from './test_bed'; export { TestComponentRenderer, ComponentFixtureAutoDetect, ComponentFixtureNoNgZone, TestModuleMetadata, TestEnvironmentOptions, ModuleTeardownOptions, } from './test_bed_common'; 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';