From 9bf545421a677560c0130c956e0e200a5615c7af Mon Sep 17 00:00:00 2001 From: Roger Chen Date: Fri, 2 Oct 2015 15:07:30 -0700 Subject: [PATCH] Add respondImmediately property to SinonFakeServer --- sinon/sinon.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sinon/sinon.d.ts b/sinon/sinon.d.ts index cdb316976..fec30d70d 100644 --- a/sinon/sinon.d.ts +++ b/sinon/sinon.d.ts @@ -264,6 +264,7 @@ declare module Sinon { fakeHTTPMethods: boolean; getHTTPMethod: (request: SinonFakeXMLHttpRequest) => string; requests: SinonFakeXMLHttpRequest[]; + respondImmediately: boolean; // Methods respondWith(body: string): void;