- Remove home-assistant-integration/ and dev-config/ - Remove Python/HA dependencies from flake.nix - Add Phoenix LiveView dashboard with clean Elixir-only stack - Add Node.js and PostgreSQL for Phoenix development - Much cleaner monorepo architecture focusing on Elixir ecosystem Next: Connect dashboard to MQTT for real-time host monitoring
9 lines
229 B
Elixir
9 lines
229 B
Elixir
defmodule DashboardWeb.PageControllerTest do
|
|
use DashboardWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, ~p"/")
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
end
|
|
end
|