mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-09 21:37:42 +08:00
8 lines
202 B
Elixir
8 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
|