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