2016-06-10 13:21:53 -04:00
|
|
|
import {DirectiveResolver, ViewResolver} from '@angular/compiler';
|
|
|
|
import {MockDirectiveResolver, MockViewResolver, TestComponentBuilder, TestComponentRenderer} from '@angular/compiler/testing';
|
|
|
|
import {TEST_BROWSER_APPLICATION_PROVIDERS, TEST_BROWSER_PLATFORM_PROVIDERS} from '@angular/platform-browser/testing';
|
2016-05-24 19:13:17 -04:00
|
|
|
|
2016-06-10 13:21:53 -04:00
|
|
|
import {BROWSER_APP_COMPILER_PROVIDERS} from './index';
|
|
|
|
import {DOMTestComponentRenderer} from './testing/dom_test_component_renderer';
|
|
|
|
|
2016-06-14 20:21:16 -04:00
|
|
|
export * from './private_export_testing'
|
|
|
|
|
2016-06-10 13:21:53 -04:00
|
|
|
/**
|
|
|
|
* Default platform providers for testing.
|
|
|
|
*/
|
|
|
|
export const TEST_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: Array<any /*Type | Provider | any[]*/> =
|
|
|
|
[TEST_BROWSER_PLATFORM_PROVIDERS];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default application providers for testing.
|
|
|
|
*/
|
|
|
|
export const TEST_BROWSER_DYNAMIC_APPLICATION_PROVIDERS: Array<any /*Type | Provider | any[]*/> = [
|
|
|
|
TEST_BROWSER_APPLICATION_PROVIDERS, BROWSER_APP_COMPILER_PROVIDERS,
|
|
|
|
[
|
|
|
|
{provide: DirectiveResolver, useClass: MockDirectiveResolver},
|
|
|
|
{provide: ViewResolver, useClass: MockViewResolver},
|
|
|
|
TestComponentBuilder,
|
|
|
|
{provide: TestComponentRenderer, useClass: DOMTestComponentRenderer},
|
|
|
|
]
|
|
|
|
];
|