Skip to main content
Module

x/superdeno/src/superagent.ts

Super-agent driven library for testing Deno HTTP servers.
Go to Latest
File
// deno-lint-ignore-file no-explicit-anyimport { superagent as _superagent } from "../deps.ts";import { XMLHttpRequestSham } from "./xhrSham.js";
function getXHR() { return new XMLHttpRequestSham();}
(_superagent as any).getXHR = getXHR;
export const superagent = _superagent;