intermediate commit

This commit is contained in:
lotte
2018-12-13 11:19:50 +01:00
parent f1da199cde
commit c6b7fd40e2
20 changed files with 1225 additions and 47 deletions

View File

@@ -0,0 +1,12 @@
import { ComponentFactory } from '@angular/core';
import { create } from 'domain';
export class ComponentInjectorStub {
resolveComponentFactory(): ComponentFactory<any> {
return {
create() {
return { hostView: {}, viewContainerParent: {}, }
}
} as any;
}
}