diff --git a/tests/conftest_playwright.py b/tests/e2e/conftest.py similarity index 100% rename from tests/conftest_playwright.py rename to tests/e2e/conftest.py diff --git a/tests/test_playwright_server.py b/tests/e2e/test_playwright_server.py similarity index 97% rename from tests/test_playwright_server.py rename to tests/e2e/test_playwright_server.py index c067fcb..f390463 100644 --- a/tests/test_playwright_server.py +++ b/tests/e2e/test_playwright_server.py @@ -9,14 +9,10 @@ This test file verifies that: from __future__ import annotations -import sys from pathlib import Path from playwright.sync_api import expect -# Import the server fixture from conftest_playwright -sys.path.insert(0, str(Path(__file__).parent)) - ARTIFACTS = Path("tests/artifacts") ARTIFACTS.mkdir(parents=True, exist_ok=True)