testing.d.ts 793 B

1234567891011121314151617
  1. /**
  2. * @module
  3. * @description
  4. * This module is used for writing tests for applications written in Angular.
  5. *
  6. * This module is not included in the `angular2` module; you must import the test module explicitly.
  7. *
  8. */
  9. export * from './src/testing/testing';
  10. export { ComponentFixture, TestComponentBuilder } from './src/testing/test_component_builder';
  11. export * from './src/testing/test_injector';
  12. export * from './src/testing/fake_async';
  13. export { MockViewResolver } from 'angular2/src/mock/view_resolver_mock';
  14. export { MockXHR } from 'angular2/src/compiler/xhr_mock';
  15. export { MockNgZone } from 'angular2/src/mock/ng_zone_mock';
  16. export { MockApplicationRef } from 'angular2/src/mock/mock_application_ref';
  17. export { MockDirectiveResolver } from 'angular2/src/mock/directive_resolver_mock';