now with pagination

This commit is contained in:
Gavin McDonald
2025-12-16 18:27:39 -05:00
parent 4a7e966744
commit e78ec9fee4
5 changed files with 122 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ defmodule LabelmakerWeb.LabelsControllerTest do
html = html_response(conn, 200)
assert html =~ "Generated Labels"
assert html =~ "Total labels: 3"
assert html =~ "Showing 1-3 of 3 labels"
end
test "displays label information correctly", %{conn: conn} do
@@ -59,7 +59,7 @@ defmodule LabelmakerWeb.LabelsControllerTest do
html = html_response(conn, 200)
# Should show all labels
assert html =~ "Total labels: 3"
assert html =~ "Showing 1-3 of 3 labels"
end
test "handles missing labels directory gracefully", %{conn: conn} do