You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
407 B
16 lines
407 B
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from scripts import ui_playwright_smoke
|
|
|
|
|
|
@pytest.mark.e2e
|
|
def test_web_ui_smoke_flow_with_authenticated_file_access() -> None:
|
|
chrome_path = Path(ui_playwright_smoke.CHROME_PATH)
|
|
if not chrome_path.exists():
|
|
pytest.skip(f"Chrome executable not found at {chrome_path}")
|
|
|
|
assert ui_playwright_smoke.main() == 0
|
|
|