defmodule DexiWeb.PageControllerTest do use DexiWeb.ConnCase test "GET /", %{conn: conn} do conn = get(conn, ~p"/") assert html_response(conn, 200) =~ "Hi, I am Dexi" end end