2015-06-26 17:25:49 -07:00
|
|
|
// Test library and utilities for internal use.
|
|
|
|
export * from './test';
|
2015-02-05 13:08:05 -08:00
|
|
|
export * from './src/test_lib/utils';
|
2015-05-12 16:28:57 +02:00
|
|
|
export * from './src/test_lib/fake_async';
|
2015-09-09 11:24:59 -07:00
|
|
|
export {ComponentRef, HostViewRef} from './src/core/compiler';
|
|
|
|
|
|
|
|
// This interface is referenced by TestComponents, however we can't export it directly from router
|
|
|
|
// because router pulls in dart:html & dart:js and we import test_lib in standalone VM tests
|
|
|
|
// so we re-create the interface here.
|
|
|
|
export interface InjectableReference {}
|