fix(core): Keep core exports seperate from core/testing exports.

This commit is contained in:
Vikram Subramanian
2016-05-31 15:15:38 -07:00
parent 7e352a27f7
commit f4f6b8721a
4 changed files with 5 additions and 15 deletions

View File

@ -8,6 +8,9 @@ export {expect} from './testing';
export {inject} from './test_injector';
export {AsyncTestCompleter} from './async_test_completer';
export {MockAnimationPlayer} from './animation/mock_animation_player';
export {MockAnimationDriver} from './animation/mock_animation_driver';
export var proxy: ClassDecorator = (t) => t;
var _global = <any>(typeof window === 'undefined' ? global : window);