feat(testing): add TestBed.get
This commit is contained in:
parent
740e80492d
commit
4648b3e5de
|
@ -130,6 +130,10 @@ export class TestBed implements Injector {
|
||||||
return TestBed;
|
return TestBed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get(token: any, notFoundValue: any = Injector.THROW_IF_NOT_FOUND) {
|
||||||
|
return getTestBed().get(token, notFoundValue);
|
||||||
|
}
|
||||||
|
|
||||||
static createComponent<T>(component: Type<T>): ComponentFixture<T> {
|
static createComponent<T>(component: Type<T>): ComponentFixture<T> {
|
||||||
return getTestBed().createComponent(component);
|
return getTestBed().createComponent(component);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue