17 lines
442 B
Elixir
17 lines
442 B
Elixir
defmodule PlausibleWeb.ErrorViewTest do
|
|
use PlausibleWeb.ConnCase, async: false
|
|
|
|
test "renders 500.html", %{conn: conn} do
|
|
conn = get(conn, "/test")
|
|
layout = Application.get_env(:plausible, PlausibleWeb.Endpoint)[:render_errors][:layout]
|
|
|
|
error_html =
|
|
Phoenix.View.render_to_string(PlausibleWeb.ErrorView, "500.html",
|
|
conn: conn,
|
|
layout: layout
|
|
)
|
|
|
|
refute error_html =~ "data-domain="
|
|
end
|
|
end
|