wimi/test/mocks/fetch.ts

30 lines
801 B
TypeScript
Raw Normal View History

2023-09-29 20:25:24 +02:00
import { TServerResponse } from "~/lib/response";
2023-09-29 20:24:08 +02:00
export function success(_path: RequestInfo | URL, _options?: RequestInit) {
const json = () => (
new Promise<TServerResponse>((resolve) => (
resolve({
YourFuckingIPAddress: "127.0.0.1",
YourFuckingISP: "FooBar Ltd",
YourFuckingCity: "Foo City",
YourFuckingCountry: "United States of FooBar",
YourFuckingTorExit: false
})
)
2023-09-29 20:25:24 +02:00
));
2023-09-29 20:24:08 +02:00
return new Promise<any>((resolve) => {
2023-09-29 20:25:24 +02:00
resolve({ status: 200, json });
2023-09-29 20:24:08 +02:00
});
}
export function error(_path: RequestInfo | URL, _options?: RequestInit) {
return new Promise<any>(() => {
throw new Error("Request error");
2023-09-29 20:25:24 +02:00
});
}
2023-09-29 20:24:08 +02:00
export function loading(_path: RequestInfo | URL, _options?: RequestInit) {
return new Promise<any>(() => null);
}