mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-09 21:16:26 +08:00
Change copy: app deployment success message (#2606)
This commit is contained in:
parent
44c480eb84
commit
c884831a07
2 changed files with 3 additions and 3 deletions
|
@ -343,7 +343,7 @@ defmodule LivebookWeb.SessionLive.AppTeamsLive do
|
||||||
with {:ok, app_deployment} <- pack_app(socket),
|
with {:ok, app_deployment} <- pack_app(socket),
|
||||||
:ok <- deploy_app(socket, app_deployment) do
|
:ok <- deploy_app(socket, app_deployment) do
|
||||||
message =
|
message =
|
||||||
"App deployment for #{app_deployment.slug} with title #{app_deployment.title} created successfully."
|
"App deployment created successfully."
|
||||||
|
|
||||||
{:noreply,
|
{:noreply,
|
||||||
socket
|
socket
|
||||||
|
|
|
@ -545,7 +545,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do
|
||||||
|> render_click()
|
|> render_click()
|
||||||
|
|
||||||
assert render(view) =~
|
assert render(view) =~
|
||||||
"App deployment for #{slug} with title Untitled notebook created successfully"
|
"App deployment created successfully"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "deployment flow with existing deployment groups in the hub",
|
test "deployment flow with existing deployment groups in the hub",
|
||||||
|
@ -608,7 +608,7 @@ defmodule LivebookWeb.Integration.SessionLiveTest do
|
||||||
|> render_click()
|
|> render_click()
|
||||||
|
|
||||||
assert render(view) =~
|
assert render(view) =~
|
||||||
"App deployment for #{slug} with title Untitled notebook created successfully"
|
"App deployment created successfully"
|
||||||
end
|
end
|
||||||
|
|
||||||
test "shows an error when the deployment size is higher than the maximum size of 20MB",
|
test "shows an error when the deployment size is higher than the maximum size of 20MB",
|
||||||
|
|
Loading…
Add table
Reference in a new issue