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


TypeScript Sinon.useFakeXMLHttpRequest函數代碼示例

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


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

示例1: beforeEach

 beforeEach(() => {
   server = sinon.fakeServer.create()
   server.autoRespond = true
   server.respondWith('GET', 'https://example.com/views/hello.html',
     [200, { 'Content-Type': 'text/plain' }, 'hello {{name}}']);
   (global as any).XMLHttpRequest = sinon.useFakeXMLHttpRequest()
 })
開發者ID:harttle,項目名稱:shopify-liquid,代碼行數:7,代碼來源:browser.ts

示例2: beforeEach

 beforeEach(() => {
   xhr = useFakeXMLHttpRequest();
   requests = [];
   xhr.onCreate = (newXhr: SinonFakeXMLHttpRequest): any => requests.push(newXhr);
   request = requestMaker(xhr);
   requestMap = mapRequestHandler("maps", "get", request);
 });
開發者ID:Ruddickmg,項目名稱:js-wars,代碼行數:7,代碼來源:mapRequestHandler.spec.ts

示例3: beforeEach

 beforeEach(() => {
   instance = null;
   instance = new Uploader();
   xhr = sinon.useFakeXMLHttpRequest();
   requests = [];
   xhr.onCreate = function(req) {
     requests.push(req);
   };
 });
開發者ID:TomLiu-GitHub,項目名稱:ngx-weui,代碼行數:9,代碼來源:uploader.class.spec.ts

示例4: describe

describe("requestHandler", () => {
  let handlerRequests: Promise<any>[];
  const requests: SinonFakeXMLHttpRequest[] = [];
  const routes: string[] = ["going", "to", "your", "house"];
  const dataObject: any[] = ["hey dude"];
  const baseUrl: string = "https://leaving";
  const xhr: SinonFakeXMLHttpRequest = sinon.useFakeXMLHttpRequest();
  const request: Request = requestMaker(this.xhr);
  const requestHandler: RequestHandler = createRequestHandler(baseUrl, routes, request);
  xhr.onCreate = (newXhr: SinonFakeXMLHttpRequest): any => requests.push(newXhr);
  it("Makes an object with properties named by their routes that are their corresponding get requests.", () => {
    routes.forEach((route: string): any => expect(requestHandler[route]).to.be.a("function"));
  });
  handlerRequests = routes.map((route: string): Promise<any> => {
    return requestHandler[route]("dummy");
  });
  handlerRequests.forEach((response: Promise<any>, index: number) => {
    it("Will make get requests from each of its methods.", () => {
      requests[index].respond(200, {"Content-Type": "application/json"}, JSON.stringify(dataObject));
      return response.then((data: any) => expect(data).to.deep.equal(dataObject));
    });
  });
});
開發者ID:Ruddickmg,項目名稱:js-wars,代碼行數:23,代碼來源:requestHandler.spec.ts

示例5: beforeEach

 beforeEach(() => {
   xhr = sinon.useFakeXMLHttpRequest();
   requests = [];
   xhr.onCreate = (newXhr: SinonFakeXMLHttpRequest): any => requests.push(newXhr);
   request = requestMaker(this.xhr);
 });
開發者ID:Ruddickmg,項目名稱:js-wars,代碼行數:6,代碼來源:requests.spec.ts

示例6: beforeEach

 beforeEach(() => {
   requests = []
   xhr = sinon.useFakeXMLHttpRequest()
   xhr.onCreate = (xhr) => requests.push(xhr)
 })
開發者ID:jsignell,項目名稱:bokeh,代碼行數:5,代碼來源:ajax_data_source.ts


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