Skip to content

Commit

Permalink
Fixed live_server
Browse files Browse the repository at this point in the history
  • Loading branch information
szymon-kellton committed Apr 5, 2024
1 parent 80a5635 commit d9bc359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/selenium_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def driver() -> Chrome:

@pytest.fixture(autouse=True)
def browser(driver: Chrome) -> Chrome:
# driver.live_server = LiveServer("localhost")
driver.live_server = LiveServer("0.0.0.0:8080")
driver.live_server = LiveServer("localhost")
# driver.live_server = LiveServer("0.0.0.0:8080")
yield driver
driver.close()
pytest.CSRF = ""
Expand Down

0 comments on commit d9bc359

Please sign in to comment.