We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f9a1b commit 37e11a2Copy full SHA for 37e11a2
1 file changed
reflex/testing.py
@@ -408,10 +408,13 @@ def _wait_frontend(self):
408
print(line) # for pytest diagnosis #noqa: T201
409
m = re.search(reflex.constants.Next.FRONTEND_LISTENING_REGEX, line)
410
if m is not None:
411
+ print(m.group(1)) # for pytest diagnosis #noqa: T201
412
self.frontend_url = m.group(1)
413
config = reflex.config.get_config()
414
config.deploy_url = self.frontend_url
415
break
416
+ else:
417
+ print("No match found.") # for pytest diagnosis #noqa: T201
418
if self.frontend_url is None:
419
raise RuntimeError("Frontend did not start")
420
0 commit comments