fix: wrap field labels in join request view
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
6327ea00eb
commit
15e9a52bc9
2 changed files with 8 additions and 8 deletions
|
|
@ -63,9 +63,9 @@ defmodule MvWeb.JoinRequestLive.ShowTest do
|
|||
|
||||
{:ok, view, _html} = live(conn, "/join_requests/#{join_request.id}")
|
||||
|
||||
assert has_element?(view, "span", "#{custom_field.name}:")
|
||||
assert has_element?(view, "span", "Alice Example")
|
||||
refute has_element?(view, "span", "#{custom_field.id}:")
|
||||
assert has_element?(view, "dt", "#{custom_field.name}:")
|
||||
assert has_element?(view, "dd", "Alice Example")
|
||||
refute has_element?(view, "dt", "#{custom_field.id}:")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue