feat: add playwright and a11y audit and example test
This commit is contained in:
parent
96085ea420
commit
c6be9b5104
19 changed files with 133 additions and 2 deletions
10
test/unit/mv_web/controllers/page_controller_test.exs
Normal file
10
test/unit/mv_web/controllers/page_controller_test.exs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue