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 dd088af commit fee733eCopy full SHA for fee733e
.github/workflows/app_harness.yml
@@ -57,7 +57,7 @@ jobs:
57
working-directory: ${{ matrix.example }}
58
run: |
59
source venv/bin/activate
60
- playwright install chromium --with-deps
+ playwright install chromium --with-deps --only-shell
61
- name: Initialize Reflex App
62
63
form-designer/tests/test_login.py
@@ -33,7 +33,7 @@ def test_create_user(
33
assert form_designer_app.frontend_url is not None
34
35
def _url(url: str):
36
- url = url.removeprefix("/")
+ url = url.removeprefix("/").removesuffix("/")
37
38
return re.compile(form_designer_app.frontend_url + url)
39
0 commit comments