Set up localspot as a Phoenix 1.8 LiveView application with: - Erlang/Elixir via asdf - PostgreSQL database (local user config) - Tailwind CSS v4 with daisyUI - Updated AGENTS.md with project setup and guidelines 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
229 B
Elixir
8 lines
229 B
Elixir
defmodule LocalspotWeb.PageControllerTest do
|
|
use LocalspotWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, ~p"/")
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
end
|
|
end
|