prop/test/microwaveprop_web/controllers/page_controller_test.exs
Graham McIntire 0c295c1558
Add click-to-inspect factor breakdown popup on map
Click anywhere on the propagation map to see a detailed popup with:
- Overall score and tier label with color
- Estimated range for the selected band (CW mode)
- All 9 scoring factors with visual bar charts, individual scores,
  and weight percentages
- Grid point coordinates and data timestamp

Factors are displayed in weight order so users can immediately see
which atmospheric conditions are driving the prediction.
2026-03-31 09:45:50 -05:00

8 lines
212 B
Elixir

defmodule MicrowavepropWeb.PageControllerTest do
use MicrowavepropWeb.ConnCase
test "GET / redirects to /map", %{conn: conn} do
conn = get(conn, ~p"/")
assert redirected_to(conn) == "/map"
end
end