2024-03-09 14:27:14 -05:00
|
|
|
defmodule ChronoscopeWeb.PageControllerTest do
|
2024-04-19 11:51:28 -04:00
|
|
|
use ChronoscopeWeb.ConnCase, async: true
|
2024-03-09 14:27:14 -05:00
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
|
|
|
conn = get(conn, ~p"/")
|
|
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
|
|
end
|
|
|
|
end
|