本文整理汇总了TypeScript中@angular/core/testing.TestBed类的典型用法代码示例。如果您正苦于以下问题:TypeScript TestBed类的具体用法?TypeScript TestBed怎么用?TypeScript TestBed使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestBed类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: expect
TestBed.compileComponents().then(() => {
let app = TestBed.createComponent(A2d3BarAppComponent);
app.detectChanges();
expect(app).toBeTruthy();
});
示例2: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
providers: [RecoverPasswordService]
});
});
示例3: it
it(`should have as title 'app'`, async(() => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('app');
}));
示例4: beforeEach
beforeEach(() => {
contributionService = TestBed.get(NoteContributionService);
store = TestBed.get(Store);
measurement = TestBed.get(NOTE_CONTRIBUTION_MEASUREMENT);
});
示例5: beforeEach
beforeEach(() => {
fixture = TestBed.createComponent(SearchComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
示例6: it
it('should be created', () => {
const service: BsSlideAngularAgenciaCriaMaisService = TestBed.get(BsSlideAngularAgenciaCriaMaisService);
expect(service).toBeTruthy();
});
开发者ID:JeanPaulll,项目名称:bs-slide-angular-agenciacriamais,代码行数:4,代码来源:bs-slide-angular-agencia-cria-mais.service.spec.ts
示例7: beforeEach
beforeEach(fakeAsync(() => {
fixture = TestBed.createComponent(TaskTimerEditorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
tick();
}));
示例8: beforeEach
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [E2EImportsModule],
declarations: [MediafileSlideComponent]
}).compileComponents();
}));
示例9: beforeEach
beforeEach(() => {
fixture = TestBed.createComponent(ContentHeaderComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
示例10: beforeEach
beforeEach(() => {
TestBed.configureTestingModule({
providers: [MatchListResolverService]
});
});