From c5c2ca2b7bdb8738a82306143521935306780a08 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Mon, 20 Nov 2023 09:42:12 -0800 Subject: [PATCH] Upgrade to bun 1.0.13 (#2202) --- reflex/constants/installer.py | 2 +- reflex/testing.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/reflex/constants/installer.py b/reflex/constants/installer.py index 99639745b..948448b6b 100644 --- a/reflex/constants/installer.py +++ b/reflex/constants/installer.py @@ -35,7 +35,7 @@ class Bun(SimpleNamespace): """Bun constants.""" # The Bun version. - VERSION = "1.0.4" + VERSION = "1.0.13" # Min Bun Version MIN_VERSION = "0.7.0" # The directory to store the bun. diff --git a/reflex/testing.py b/reflex/testing.py index 88e3a9e35..a6bb3d400 100644 --- a/reflex/testing.py +++ b/reflex/testing.py @@ -55,7 +55,8 @@ try: except ImportError: has_selenium = False -DEFAULT_TIMEOUT = 10 +# The timeout (minutes) to check for the port. +DEFAULT_TIMEOUT = 15 POLL_INTERVAL = 0.25 FRONTEND_POPEN_ARGS = {} T = TypeVar("T")