livebook/test/livebook_web/live/explore_live_test.exs
Jonatan Kłosko adb9612fbe
Add link pointing to a new notebook (#347)
* Add link pointing to a new notebook

* Add test
2021-06-14 21:25:18 +02:00

28 lines
737 B
Elixir

defmodule LivebookWeb.ExploreLiveTest do
use LivebookWeb.ConnCase
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