diff --git a/tests/conftest.py b/tests/conftest.py index 5fafed57..d2c0fb30 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3,7 +3,7 @@ import pytest from playwright.sync_api import sync_playwright -HEADLESS = getenv("HEADLESS", "1").lower() == "1" +HEADLESS = getenv("HEADLESS", "1") == "1" @pytest.fixture()