當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript TestScheduler.expectObservable方法代碼示例

本文整理匯總了TypeScript中rxjs/Rx.TestScheduler.expectObservable方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript TestScheduler.expectObservable方法的具體用法?TypeScript TestScheduler.expectObservable怎麽用?TypeScript TestScheduler.expectObservable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rxjs/Rx.TestScheduler的用法示例。


在下文中一共展示了TestScheduler.expectObservable方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: iit

 iit('counterObservable', () => {    
   const source = hot<number>('^--a-b-c', { a: 1, b: 1, c: 2 });
   const marbles = '---a-b-c';
   const values = { a: 1, b: 2, c: 5 };
   ts.expectObservable(counterObservable(source)).toBe(marbles, values);
   ts.flush();
 });
開發者ID:ovrmrw,項目名稱:angular2-testing-sample,代碼行數:7,代碼來源:page1.rxjs.spec.ts

示例2: it

 it('timerObservable', () => {
   const marbles = 'a-b-c-(d|';
   const values = { a: 0, b: 1, c: 2, d: 3 };
   const test = timerObservable(0, 20, ts).take(4);
   ts.expectObservable(test).toBe(marbles, values);
   ts.flush();
 });
開發者ID:ovrmrw,項目名稱:angular2-testing-sample,代碼行數:7,代碼來源:test1.ts

示例3: it

 it('should return correct observable', () => {
   const source$ = cold<number>('-a-b-c', { a: 1, b: 2, c: 3 });
   const marbles = '---B-C';
   const values = { A: 10, B: 20, C: 30 };
   const test$ = mapFilterTest(source$);
   ts.expectObservable(test$).toBe(marbles, values);
   ts.flush();
 });
開發者ID:ovrmrw,項目名稱:ionic2-testing-sample,代碼行數:8,代碼來源:sample1.ts

示例4: it

  it('should return correct observable', () => {
    const source = cold<number>('-a-b-c', { a: 1, b: 2, c: 3 });
    const expected = '---b-c';
    const expectedValues = { a: 10, b: 20, c: 30 };

    ts.expectObservable(maptest(source)).toBe(expected, expectedValues);
    ts.flush();
  });
開發者ID:ovrmrw,項目名稱:angular2-testing-sample,代碼行數:8,代碼來源:page1.rxjs.spec.ts

示例5: it

 it('"incrementObservable" should return correct observable', () => {
   const source$ = hot<number>('---^a-b-c---d--e', { a: 0, b: 1, c: 1, d: 2, e: -1 });
   const marbles = '-A-B-C---D--E';
   const values = { A: 0, B: 1, C: 2, D: 4, E: 3 };
   const test$ = incrementObservable(source$, true);
   ts.expectObservable(test$).toBe(marbles, values);
   ts.flush();
 });
開發者ID:ovrmrw,項目名稱:ionic2-testing-sample,代碼行數:8,代碼來源:store.spec.ts


注:本文中的rxjs/Rx.TestScheduler.expectObservable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。