本文整理汇总了TypeScript中@angular/core/testing/test_bed.TestBed类的典型用法代码示例。如果您正苦于以下问题:TypeScript TestBed类的具体用法?TypeScript TestBed怎么用?TypeScript TestBed使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestBed类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
BaseRequestOptions,
MockBackend,
{
provide: Http,
useFactory: function (backend, defaultOptions) {
return new Http(backend, defaultOptions);
},
deps: [MockBackend, BaseRequestOptions]
},
AuthService
],
imports: [
FormsModule,
MdInputModule
],
declarations: [
Crud
]
});
TestBed.overrideComponent(Crud, {
set: {
// you can override values here
}
});
});
示例2: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
RioNavigatorItem
]
});
fixture = TestBed.createComponent(RioNavigatorItem);
fixture.detectChanges();
});
示例3: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
RioContainer
]
});
fixture = TestBed.createComponent(RioContainer);
fixture.detectChanges();
});
示例4: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
RioFormModule
]
});
fixture = TestBed.createComponent(RioFormError);
fixture.detectChanges();
});
示例5: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
ReactiveFormsModule
],
declarations: [
RioFormError
]
});
fixture = TestBed.createComponent(RioFormError);
fixture.detectChanges();
});
示例6: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
providers: [],
declarations: [About]
});
TestBed.overrideComponent(About, {
set: {
// you can override values here
}
});
});
示例7: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
RioModal,
RioModalTestController
],
providers: [
RioModal
]
});
fixture = TestBed.createComponent(RioModalTestController);
fixture.detectChanges();
});
示例8: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
RioNavigatorModule
],
declarations: [
RioNavigatorTestController
],
providers: [
RioNavigator
]
});
fixture = TestBed.createComponent(RioNavigatorTestController);
fixture.detectChanges();
});
示例9: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
imports: [ReactiveFormsModule],
declarations: [
RioLoginForm,
RioForm,
RioInput,
RioFormError,
RioButton,
RioAlert
]
});
fixture = TestBed.createComponent(RioLoginForm);
fixture.detectChanges();
});
示例10: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
ReactiveFormsModule
],
declarations: [
RioFormGroup,
RioFormGroupTestController
],
providers: [
RioFormGroup
]
});
fixture = TestBed.createComponent(RioFormGroupTestController);
fixture.detectChanges();
});