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


TypeScript Sinon.SinonFakeTimers類代碼示例

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


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

示例1: describe

	describe("wait() => ", () => {

		let clock: SinonFakeTimers;
		beforeEach(() => {
			clock = useFakeTimers();
		});

		const timeout = 100;

		it(`wait(${timeout}) should wait ${timeout} ms`, (done) => {

			const leSpy = spy();

			wait(timeout).then(() => {
				expect(Date.now()).to.equal(timeout);
				done();
			});
			clock.runAll();

		});

		afterEach(() => {
			clock.restore();
		});
	});
開發者ID:AlCalzone,項目名稱:shared-utils,代碼行數:25,代碼來源:async.test.ts

示例2: describe

			describe(scenario.description, (): void => {
				let clock: SinonFakeTimers;

				beforeEach((): void => {
					if (scenario.today) {
						const currentYear: number = (new Date()).getFullYear();

						clock = sinon.useFakeTimers(new Date(currentYear, scenario.today.month, scenario.today.day).valueOf());
					}

					episode.status = scenario.status;
					episode.unscheduled = scenario.unscheduled;

					episode.setStatusDate(scenario.statusDate);
				});

				it("should set the status date", (): Chai.Assertion => episode.statusDate.should.equal(scenario.statusDate));
				it("should set the status date display", (): Chai.Assertion => episode.statusDateDisplay.should.equal(scenario.statusDateDisplay));
				it(`should ${"" === scenario.statusWarning ? "not " : ""}highlight the episode with a warning`, (): Chai.Assertion => episode.statusWarning.should.equal(scenario.statusWarning));

				afterEach((): void => {
					if (scenario.today) {
						clock.restore();
					}
				});
			});
開發者ID:scottohara,項目名稱:tvmanager,代碼行數:26,代碼來源:episode-model_spec.ts

示例3: 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

示例4: Promise

 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

示例5: afterEach

 afterEach(async () => {
     clock.restore();
     await nsp
         .delete()
         .key('connection')
         .exec();
 });
開發者ID:WatchBeam,項目名稱:discord-sync,代碼行數:7,代碼來源:locking.test.ts

示例6: Promise

				return new Promise(res => {
					setTimeout(() => {
						leSpy(result);
						res(result);
					}, time);
					clock.runAll();
				});
開發者ID:AlCalzone,項目名稱:shared-utils,代碼行數:7,代碼來源:async.test.ts

示例7: doWait

		it("should execute the given promises in a sequence", (done) => {
			const leSpy = spy();
			function doWait(time: number, result: number | {} | PromiseLike<{}>) {
				return new Promise(res => {
					setTimeout(() => {
						leSpy(result);
						res(result);
					}, time);
					clock.runAll();
				});
			}
			// create an array of promise factories that would usually not finish in order
			const factories = [
				() => doWait(300, 1),
				() => doWait(100, 2),
				() => doWait(200, 3),
				() => doWait(50, 4),
			];
			promiseSequence(factories).then(() => {
				leSpy.callCount.should.equal(4);
				leSpy.getCall(0).args[0].should.equal(1);
				leSpy.getCall(1).args[0].should.equal(2);
				leSpy.getCall(2).args[0].should.equal(3);
				leSpy.getCall(3).args[0].should.equal(4);
				done();
			});
			clock.runAll();
		});
開發者ID:AlCalzone,項目名稱:shared-utils,代碼行數:28,代碼來源:async.test.ts

示例8: it

 it('should call jobsQueue.register after 10 seconds', async () => {
   const p = inst.onBlockchainReady();
   expect(jobsQueueStub.stubs.register.notCalled).to.be.true;
   clock.tick(10100);
   await p;
   expect(jobsQueueStub.stubs.register.called).to.be.true;
   expect(jobsQueueStub.stubs.register.firstCall.args[0]).to.be.equal('delegatesNextForge');
   expect(jobsQueueStub.stubs.register.firstCall.args[1]).to.be.a('function');
   expect(jobsQueueStub.stubs.register.firstCall.args[2]).to.be.equal(1000);
 });
開發者ID:RiseVision,項目名稱:rise-node,代碼行數:10,代碼來源:forge.spec.ts

示例9: spy

		it(`wait(${timeout}) should wait ${timeout} ms`, (done) => {

			const leSpy = spy();

			wait(timeout).then(() => {
				expect(Date.now()).to.equal(timeout);
				done();
			});
			clock.runAll();

		});
開發者ID:AlCalzone,項目名稱:shared-utils,代碼行數:11,代碼來源:async.test.ts


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