Each compile template now exposes a `<CompName>NgFactory` variable with an instance of a `ComponentFactory`. Calling `ComponentFactory.create` returns a `ComponentRef` that can be used directly. BREAKING CHANGE: - `Compiler` is renamed to `ComponentResolver`, `Compiler.compileInHost` has been renamed to `ComponentResolver.resolveComponent`. - `ComponentRef.dispose` is renamed to `ComponentRef.destroy` - `ViewContainerRef.createHostView` is renamed to `ViewContainerRef.createComponent` - `ComponentFixture_` has been removed, the class `ComponentFixture` can now be created directly as it is no more using private APIs.
22 lines
671 B
TypeScript
22 lines
671 B
TypeScript
import {SpyObject} from 'angular2/testing_internal';
|
|
import {Injector, provide} from 'angular2/core';
|
|
import {global} from 'angular2/src/facade/lang';
|
|
import {ApplicationRef, ApplicationRef_} from 'angular2/src/core/application_ref';
|
|
|
|
export class SpyApplicationRef extends SpyObject {
|
|
constructor() { super(ApplicationRef_); }
|
|
}
|
|
|
|
export class SpyComponentRef extends SpyObject {
|
|
injector;
|
|
constructor() {
|
|
super();
|
|
this.injector =
|
|
Injector.resolveAndCreate([provide(ApplicationRef, {useClass: SpyApplicationRef})]);
|
|
}
|
|
}
|
|
|
|
export function callNgProfilerTimeChangeDetection(config?): void {
|
|
(<any>global).ng.profiler.timeChangeDetection(config);
|
|
}
|