当前位置: 首页>>代码示例>>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;未经允许,请勿转载。