mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 11:02:52 +03:00
11 lines
247 B
Elixir
11 lines
247 B
Elixir
defmodule PlausibleWeb.PageControllerTest do
|
|
use PlausibleWeb.ConnCase
|
|
|
|
describe "GET /" do
|
|
test "shows the landing page", %{conn: conn} do
|
|
conn = get(conn, "/")
|
|
assert html_response(conn, 200) =~ "Plausible"
|
|
end
|
|
end
|
|
end
|