mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-16 04:46:46 +08:00
adb9612fbe
* Add link pointing to a new notebook * Add test
28 lines
737 B
Elixir
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
|