2015-06-27 00:25:49 +00:00
|
|
|
// Test library and utilities for internal use.
|
|
|
|
|
export * from './test';
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './src/test_lib/utils';
|
2015-05-12 14:28:57 +00:00
|
|
|
export * from './src/test_lib/fake_async';
|
2015-09-09 18:24:59 +00: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 {}
|