mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-17 16:10:12 +01:00
15 lines
441 B
INI
15 lines
441 B
INI
|
|
# Playwright Configuration (M3: Cypress/Playwright Smoke Tests)
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
testpaths = ["tests/e2e"]
|
||
|
|
addopts = "-v --tb=short"
|
||
|
|
markers = [
|
||
|
|
"smoke: Basic smoke tests for core functionality",
|
||
|
|
"full: Comprehensive end-to-end tests",
|
||
|
|
"mobile: Mobile responsive tests",
|
||
|
|
]
|
||
|
|
|
||
|
|
# Playwright specific settings
|
||
|
|
PLAYWRIGHT_BROWSERS = ["chromium"] # Can add "firefox", "webkit" for cross-browser testing
|