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


TypeScript SinonFakeTimers.tick方法代码示例

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


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

示例1: it

 it("can integrate", () => {
   const acceleration = sinkBehavior(1);
   const bIntergrate = integrateFrom(acceleration);
   const integration = at(bIntergrate);
   assert.strictEqual(at(integration), 0);
   clock.tick(2000);
   assert.strictEqual(at(integration), 2000);
   clock.tick(1000);
   assert.strictEqual(at(integration), 3000);
   clock.tick(500);
   acceleration.push(2);
   assert.strictEqual(at(integration), 4000);
 });
开发者ID:paldepind,项目名称:hareactive,代码行数:13,代码来源:behavior.ts

示例2: it

 it('releases the lock', async () => {
     await lock.create();
     clock.tick(6000);
     await new Promise(resolve => {
         watcher.once('delete', () => resolve());
     });
 });
开发者ID:WatchBeam,项目名称:discord-sync,代码行数:7,代码来源:locking.test.ts

示例3: it

 it('should call logger.warn in scheduled job if this.forge throws', async () => {
   const expectedError = new Error('err');
   forgeStub.throws(expectedError);
   const p = inst.onBlockchainReady();
   clock.tick(500000);
   await p;
   expect(loggerStub.stubs.warn.calledOnce).to.be.true;
   expect(loggerStub.stubs.warn.firstCall.args[0]).to.be.equal('Error in nextForge');
   expect(loggerStub.stubs.warn.firstCall.args[1]).to.be.deep.equal(expectedError);
 });
开发者ID:RiseVision,项目名称:rise-node,代码行数:10,代码来源:forge.spec.ts

示例4: expect

 return iterator.iterate(iterable, (value: any, index: number) => {
   expect(value).to.equal(iterable[index]);
   clock.tick(speedInMilliseconds);
 });
开发者ID:Ruddickmg,项目名称:js-wars,代码行数:4,代码来源:timedIterator.spec.ts

示例5: expect

 return typewriter.type(message, (text: string) => {
   expect(text).to.equal(message[i++]);
   clock.tick(speedInMilliseconds);
 });
开发者ID:Ruddickmg,项目名称:js-wars,代码行数:4,代码来源:typing.spec.ts


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