- Remove remaining home-assistant-integration/ and dev-config/ - Move dashboard to repo root for proper monorepo layout - Remove crash dumps and symlinks - Clean structure: server/ and dashboard/ at root level
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
|