本文整理匯總了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();
});