forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesting.ts
More file actions
23 lines (22 loc) · 846 Bytes
/
testing.ts
File metadata and controls
23 lines (22 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @module
* @description
* This module is used for writing tests for applications written in Angular.
*
* This module is not included in the `angular2` module; you must import the test module explicitly.
*
*/
export * from './src/testing/testing';
export {
ComponentFixture,
TestComponentBuilder,
ComponentFixtureAutoDetect,
ComponentFixtureNoNgZone
} from './src/testing/test_component_builder';
export * from './src/testing/test_injector';
export * from './src/testing/fake_async';
export {MockViewResolver} from 'angular2/src/mock/view_resolver_mock';
export {MockXHR} from 'angular2/src/compiler/xhr_mock';
export {MockNgZone} from 'angular2/src/mock/ng_zone_mock';
export {MockApplicationRef} from 'angular2/src/mock/mock_application_ref';
export {MockDirectiveResolver} from 'angular2/src/mock/directive_resolver_mock';