mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-10 05:49:32 +08:00
9 lines
202 B
Elixir
9 lines
202 B
Elixir
|
defmodule LiveBookWeb.PageControllerTest do
|
||
|
use LiveBookWeb.ConnCase
|
||
|
|
||
|
test "GET /", %{conn: conn} do
|
||
|
conn = get(conn, "/")
|
||
|
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
|
||
|
end
|
||
|
end
|