mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-27 06:21:18 -07:00
Chore: full react hooks eslint compliance (#7040)
This commit is contained in:
@@ -22,7 +22,7 @@ describe("widgets/gamedig/component", () => {
|
||||
const service = { widget: { type: "gamedig", url: "http://x" } };
|
||||
const { container } = renderWithProviders(<Component service={service} />, { settings: { hideErrors: false } });
|
||||
|
||||
expect(service.widget.fields).toEqual(["map", "currentPlayers", "ping"]);
|
||||
expect(service.widget.fields).toBeUndefined();
|
||||
expect(container.querySelectorAll(".service-block")).toHaveLength(3);
|
||||
expect(screen.getByText("gamedig.map")).toBeInTheDocument();
|
||||
expect(screen.getByText("gamedig.currentPlayers")).toBeInTheDocument();
|
||||
@@ -54,7 +54,7 @@ describe("widgets/gamedig/component", () => {
|
||||
|
||||
const { container } = renderWithProviders(<Component service={service} />, { settings: { hideErrors: false } });
|
||||
|
||||
expect(service.widget.fields).toEqual(["status", "name", "map", "currentPlayers"]);
|
||||
expect(service.widget.fields).toEqual(["status", "name", "map", "currentPlayers", "ping"]);
|
||||
expect(container.querySelectorAll(".service-block")).toHaveLength(4);
|
||||
|
||||
expectBlockValue(container, "gamedig.status", "gamedig.online");
|
||||
|
||||
Reference in New Issue
Block a user