corrects failed tests

This commit is contained in:
Massedil
2025-12-17 13:42:53 +01:00
parent fa97776ede
commit 33e0d13b4e

View File

@@ -97,9 +97,7 @@ describe("InstancesView", () => {
expect(requestHandlers.handle_0).toHaveBeenCalledTimes(0); expect(requestHandlers.handle_0).toHaveBeenCalledTimes(0);
expect(requestHandlers.handle_1).toHaveBeenCalledTimes(1); expect(requestHandlers.handle_1).toHaveBeenCalledTimes(1);
expect(requestHandlers.handle_1).toHaveBeenCalledWith({ expect(requestHandlers.handle_1).toHaveBeenCalledWith({
filterDomain: "", limit: 100,
filterFollowStatus: "ALL",
limit: 10,
page: 1, page: 1,
}); });
}); });