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


TypeScript jasmine-marbles.cold函數代碼示例

本文整理匯總了TypeScript中jasmine-marbles.cold函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript cold函數的具體用法?TypeScript cold怎麽用?TypeScript cold使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: it

        it('should return a new CancellationFailedAction on error', () => {
            const cancellationData: CancellationData = {
                id: 'id',
                accessToken: 'token',
                cancellationReason: {
                    positionOccupied: true,
                    occupiedWith: {
                        jobCenter: true,
                        privateAgency: false,
                        self: false
                    }
                }
            };

            const action = new SubmitCancellationAction(cancellationData);
            actions$ = hot('-a', { a: action });

            const response = cold('-#|', {}, 'error');
            mockJobPublicationService.cancelJobPublication.and.returnValue(response);

            const cancellationFailedAction = new CancellationFailedAction('error');
            const expected = cold('--b', { b: cancellationFailedAction });

            expect(effects.cancelJobPublication$).toBeObservable(expected);
        });
開發者ID:alv-ch,項目名稱:job-room,代碼行數:25,代碼來源:job-publication-detail.effects.spec.ts

示例2: it

    it('should populate occupationLabels', () => {
        // GIVEN
        const occupation$ = cold('-a', {
            a: {
                male: 'Text-M',
                female: 'Text-F'
            }
        });
        mockOccupationOccupationPresentationService.findOccupationLabelsByAvamCode.and.returnValue(occupation$);

        // WHEN
        fixture.detectChanges();

        // THEN
        const expected = cold('-b', {
            b: [{
                occupation: {
                    avamCode: 22222,
                    bfsCode: 22,
                    sbn3Code: 222,
                    sbn5Code: 22222
                },
                occupationLabels: {
                    male: 'Text-M',
                    female: 'Text-F'
                },
                occupationLabel: 'Text-M',
                wanted: true
            }]
        });

        expect(component.jobExperiences$).toBeObservable(expected);
    });
開發者ID:alv-ch,項目名稱:job-room,代碼行數:33,代碼來源:candidate-detail.component.spec.ts

示例3: it

    it('should emit ActionStockMarketRetrieveError on error', () => {
      const retrieveAction = new ActionStockMarketRetrieve({
        symbol
      });
      const error = 'ERROR';
      const errorAction = new ActionStockMarketRetrieveError({
        error
      } as any);
      const values = {
        a: retrieveAction,
        e: errorAction
      };
      const source = cold('a', values);
      const expected = cold('--e', values);
      const actions = new Actions(source);

      stockMarket.retrieveStock.and.returnValue(throwError(error));

      const effects = new StockMarketEffects(
        actions,
        localStorage,
        stockMarket
      );

      expect(
        effects.retrieveStock({
          debounce: 20,
          scheduler: getTestScheduler()
        })
      ).toBeObservable(expected);
    });
開發者ID:tormentedhollow,項目名稱:angular-ngrx-material-starter,代碼行數:31,代碼來源:stock-market.effects.spec.ts

示例4: it

        it('should return new JobListLoadedAction if store is in initial state', () => {
            const jobList = [
                {
                    id: '0',
                    externalId: 'extId0',
                    title: 'title-0',
                    source: 'api',
                    publicationEndDate: new Date()
                }
            ];
            const responseWrapper = new ResponseWrapper(new Headers({ 'X-Total-Count': '100' }), jobList, 200);

            actions$ = hot('-a', { a: action });
            const response = cold('-a|', { a: responseWrapper });
            mockJobService.search.and.returnValue(response);

            const jobListLoadedAction = new actions.JobListLoadedAction({
                jobList,
                totalCount: 100,
                page: 0
            });
            const expected = cold('--b|', { b: jobListLoadedAction });

            expect(effects.initJobSearch$).toBeObservable(expected);
        });
開發者ID:alv-ch,項目名稱:job-room,代碼行數:25,代碼來源:job-search.effects.spec.ts

示例5: it

      it('should re-evaluate when formula changes', () => {
        service.evaluate.and.callFake(v => v.toUpperCase());
        component.ngOnInit();

        cold(data.formula).subscribe(v => component.formula.setValue(v));

        expect(component.value$).toBeObservable(cold(data.value$));
      });
開發者ID:cvuorinen,項目名稱:angular2-excel,代碼行數:8,代碼來源:cell.component.spec.ts

示例6: it

    it('DeleteReport should delete the current report', () => {
      actions = hot('a-', { a: new Actions.DeleteReport(4) });

      const response = cold('-b', { b: { id: 4 } });

      service.deleteReport.and.returnValue(response);

      const expected = cold('-c', { c: new Actions.DeleteReportSuccess(4) });
      expect(effects.deleteReport$).toBeObservable(expected);
    });
開發者ID:burke-software,項目名稱:django-report-builder,代碼行數:10,代碼來源:reports.spec.ts

示例7: it

        it('should return new CandidateSearchToolCountedAction with zero totalCount on exception', () => {
            actions$ = hot('-a', { a: action });
            const response = cold('-#', {}, 'numberFormatException');
            mockCandidateService.count.and.returnValue(response);

            const countUpdatedAction = new CandidateSearchToolCountedAction(0);
            const expected = cold('--b', { b: countUpdatedAction });

            expect(effects.candidateSearchToolCount$).toBeObservable(expected);
        })
開發者ID:alv-ch,項目名稱:job-room,代碼行數:10,代碼來源:home.effects.spec.ts

示例8: it

  it('should call the search api and return the search results', () => {
    const response = cold('-a|', { a: books });
    const expected = cold('-b|', { b: books.items });
    http.get = jest.fn(() => response);

    expect(service.searchBooks(queryTitle)).toBeObservable(expected);
    expect(http.get).toHaveBeenCalledWith(
      `https://www.googleapis.com/books/v1/volumes?q=${queryTitle}`
    );
  });
開發者ID:WinGood,項目名稱:platform,代碼行數:10,代碼來源:google-books.spec.ts


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