Fix: fix compatibility with flood changes (#6477)

This commit is contained in:
Alex
2026-03-29 15:48:43 +02:00
committed by GitHub
parent 36b909d4a4
commit a81ac47be9
2 changed files with 2 additions and 2 deletions

View File

@@ -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) {

View File

@@ -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"));