defmodule MvWeb.PageControllerTest do use MvWeb.ConnCase test "GET /", %{conn: conn} do conn = conn_with_oidc_user(conn) conn = get(conn, ~p"/") assert html_response(conn, 200) =~ "Mitgliederverwaltung" end end