Increase assertion timeout on Windows

This commit is contained in:
Jonatan Kłosko 2025-10-07 16:57:53 +02:00
parent 24ce5b33cc
commit 20d7464b7c

View file

@ -2171,8 +2171,11 @@ defmodule Livebook.SessionTest do
assert_receive {:app_created, %{pid: ^app_pid}} assert_receive {:app_created, %{pid: ^app_pid}}
# The app takes a while to execute on Windows CI, with concurrent
# app deployments.
assert_receive {:app_updated, assert_receive {:app_updated,
%{pid: ^app_pid, sessions: [%{app_status: %{execution: :executed}}]}} %{pid: ^app_pid, sessions: [%{app_status: %{execution: :executed}}]}},
10_000
end) end)
# Logs from other test might be captured, so we're using an unique_id # Logs from other test might be captured, so we're using an unique_id