From 24ce5b33cc963659b43ec0eaa2584dd4afbbd02b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Tue, 7 Oct 2025 16:41:54 +0200 Subject: [PATCH] Add intermediate assert_receive to reduce timeout --- test/livebook/session_test.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/livebook/session_test.exs b/test/livebook/session_test.exs index 855740f3f..fd879c162 100644 --- a/test/livebook/session_test.exs +++ b/test/livebook/session_test.exs @@ -2169,6 +2169,8 @@ defmodule Livebook.SessionTest do app_pid = deploy_notebook_sync(notebook, permanent: true) + assert_receive {:app_created, %{pid: ^app_pid}} + assert_receive {:app_updated, %{pid: ^app_pid, sessions: [%{app_status: %{execution: :executed}}]}} end)