mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-14 23:45:57 +08:00
Increase assertion timeout on Windows
This commit is contained in:
parent
24ce5b33cc
commit
20d7464b7c
1 changed files with 4 additions and 1 deletions
|
@ -2171,8 +2171,11 @@ defmodule Livebook.SessionTest do
|
|||
|
||||
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,
|
||||
%{pid: ^app_pid, sessions: [%{app_status: %{execution: :executed}}]}}
|
||||
%{pid: ^app_pid, sessions: [%{app_status: %{execution: :executed}}]}},
|
||||
10_000
|
||||
end)
|
||||
|
||||
# Logs from other test might be captured, so we're using an unique_id
|
||||
|
|
Loading…
Add table
Reference in a new issue