livebook/test/livebook_web/live/explore_live_test.exs

29 lines
750 B
Elixir
Raw Normal View History

defmodule LivebookWeb.ExploreLiveTest do
use LivebookWeb.ConnCase, async: true
import Phoenix.LiveViewTest
test "link to introductory notebook correctly creates a new session", %{conn: conn} do
{:ok, view, _} = live(conn, "/explore")
assert {:error, {:live_redirect, %{to: to}}} =
view
|> element(~s{a}, "Let's go")
|> render_click()
assert to =~ "/sessions/"
{:ok, view, _} = live(conn, to)
assert render(view) =~ "Welcome to Livebook"
end
test "link to a new notebook creates an empty session", %{conn: conn} do
{:ok, view, _} =
conn
|> live("/explore/notebooks/new")
|> follow_redirect(conn)
assert render(view) =~ "Untitled notebook"
end
end