WIP feat: member user relation

This commit is contained in:
Moritz 2025-07-24 20:15:01 +02:00
parent 997691746a
commit 4e6f5a517a
Signed by: moritz
GPG key ID: 1020A035E5DD0824
35 changed files with 1208 additions and 192 deletions

View file

@ -244,7 +244,9 @@ defmodule MvWeb.UserLive.FormTest do
flunk("Expected validation error but form was submitted successfully")
html when is_binary(html) ->
assert html =~ "must have length of at least 8"
# Allow for different validation message sources
assert html =~ "length must be greater than or equal to 8" or
html =~ "must have length of at least 8"
end
end
end