@frontity/wp-source
Version:
A Frontity source package for the REST API of self-hosted and WordPress.com sites
11 lines (9 loc) • 356 B
text/typescript
import { Response as NodeResponse } from "node-fetch";
import { getTotal } from "../response-utils";
describe("response utils - getTotal", () => {
test("retrives result from header", () => {
const response = (new NodeResponse() as any) as Response;
response.headers.get = jest.fn(() => "1");
expect(getTotal(response, 0)).toBe(1);
});
});