We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e11a2 commit 04ffac3Copy full SHA for 04ffac3
1 file changed
reflex/testing.py
@@ -405,16 +405,13 @@ def _wait_frontend(self):
405
)
406
if not line:
407
break
408
- print(line) # for pytest diagnosis #noqa: T201
+ print(repr(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
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