typescript 测试OBS-todos2.component.ts

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 测试OBS-todos2.component.ts相关的知识,希望对你有一定的参考价值。

import { cold, getTestScheduler } from 'jasmine-marbles';

const todosServiceStub = {
  get() {
    const todos$ = cold('--x|', { x: [{id: 1}] });
    return todos$
  }
};

describe('TodosComponent', () => {

  it('should work', () => {
    const todos = element.querySelectorAll('.todo');
    const loading = element.querySelector('.loading');
    expect(loading).not.toBeNull();
    getTestScheduler().flush(); // flush the observables
    fixture.detectChanges();
    expect(element.querySelectorAll('.todo').length).toEqual(1);
    expect(element.querySelectorAll('.loading').length).toEqual(0);
  });

});

以上是关于typescript 测试OBS-todos2.component.ts的主要内容,如果未能解决你的问题,请参考以下文章

typescript 测试OBS-todos2.component.ts

typescript 测试OBS-todos1.component.ts

typescript 测试OBS-todos0.component.ts

typescript 测试OBS-todos.component.spec.ts

TypeScript 中的单元测试 [关闭]

typescript 测试Typescript代码突出显示