当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript assert.calledThrice方法代码示例

本文整理汇总了TypeScript中Sinon.assert.calledThrice方法的典型用法代码示例。如果您正苦于以下问题:TypeScript assert.calledThrice方法的具体用法?TypeScript assert.calledThrice怎么用?TypeScript assert.calledThrice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Sinon.assert的用法示例。


在下文中一共展示了assert.calledThrice方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it('calls each registered getter once each call', async () => {
      const authScope = new AuthScopeService();
      const user = {} as any;
      const request = requestFixture();
      const getter1 = sinon.stub();
      const getter2 = sinon.stub();
      const getter3 = sinon.stub();

      authScope.registerGetter(getter1);
      authScope.registerGetter(getter2);
      authScope.registerGetter(getter3);

      await authScope.getForRequestAndUser(request, user);
      sinon.assert.calledOnce(getter1);
      sinon.assert.calledOnce(getter2);
      sinon.assert.calledOnce(getter3);

      await authScope.getForRequestAndUser(request, user);
      sinon.assert.calledTwice(getter1);
      sinon.assert.calledTwice(getter2);
      sinon.assert.calledTwice(getter3);

      await authScope.getForRequestAndUser(request, user);
      sinon.assert.calledThrice(getter1);
      sinon.assert.calledThrice(getter2);
      sinon.assert.calledThrice(getter3);
    });
开发者ID:elastic,项目名称:kibana,代码行数:27,代码来源:auth_scope_service.test.ts

示例2: testSchedule

    async function testSchedule(task: TaskInstance) {
      const callCluster = sinon.stub();
      callCluster.withArgs('index').returns(
        Promise.resolve({
          _id: 'testid',
          _seq_no: 3344,
          _primary_term: 3344,
        })
      );
      callCluster.withArgs('indices.getTemplate').returns(Promise.resolve({ tasky: {} }));
      const store = new TaskStore({
        callCluster,
        getKibanaUuid,
        logger: mockLogger(),
        index: 'tasky',
        maxAttempts: 2,
        supportedTypes: ['report', 'dernstraight', 'yawn'],
      });
      await store.init();
      const result = await store.schedule(task);

      sinon.assert.calledThrice(callCluster);

      return { result, callCluster, arg: callCluster.args[2][1] };
    }
开发者ID:njd5475,项目名称:kibana,代码行数:25,代码来源:task_store.test.ts

示例3:

                promizr.concat(list, iterator).then(results => {
                    sinon.assert.calledThrice(spy);

                    spy.getCall(0).args[0].should.equal(list[1]);
                    spy.getCall(1).args[0].should.equal(list[2]);
                    spy.getCall(2).args[0].should.equal(list[0]);
                }).then(done, done);
开发者ID:spatools,项目名称:promizr,代码行数:7,代码来源:collections.ts

示例4: it

            it("", () => {
                var reactions = reactionsHelpers.createFakeReactions(3),
                    expectedResolution = { value: "Yoopie !" };

                abstract.triggerPromiseReaction(reactions, expectedResolution);

                sinon.assert.calledThrice(enqueueTaskStub);
            });
开发者ID:spatools,项目名称:promizr,代码行数:8,代码来源:abstract.ts


注:本文中的Sinon.assert.calledThrice方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。