mirror of
https://github.com/gethomepage/homepage.git
synced 2026-03-30 23:02:39 -07:00
Fix: fix compatibility with flood changes (#6477)
This commit is contained in:
@@ -12,7 +12,7 @@ async function login(widget) {
|
||||
const loginParams = {
|
||||
method: "POST",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
body: null,
|
||||
body: "{}",
|
||||
};
|
||||
|
||||
if (widget.username && widget.password) {
|
||||
|
||||
@@ -45,7 +45,7 @@ describe("widgets/flood/proxy", () => {
|
||||
expect(httpProxy).toHaveBeenCalledTimes(3);
|
||||
expect(httpProxy.mock.calls[0][0].toString()).toBe("http://flood/api/stats");
|
||||
expect(httpProxy.mock.calls[1][0]).toBe("http://flood/api/auth/authenticate");
|
||||
expect(httpProxy.mock.calls[1][1].body).toBeNull();
|
||||
expect(httpProxy.mock.calls[1][1].body).toBe("{}");
|
||||
expect(httpProxy.mock.calls[2][0].toString()).toBe("http://flood/api/stats");
|
||||
expect(res.statusCode).toBe(200);
|
||||
expect(res.body).toEqual(Buffer.from("data"));
|
||||
|
||||
Reference in New Issue
Block a user