mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-09-22 04:50:46 +02:00

- Include/exclude cards feature complete with 300+ card knowledge base and intelligent fuzzy matching - Enhanced visual validation with warning icons and performance benchmarks (100% pass rate) - Mobile responsive design with bottom-floating controls, two-column layout, and horizontal scroll prevention - Dark theme confirmation modal for fuzzy matches with card preview and alternatives - Dual architecture support for web UI staging system and CLI direct build paths - All M3 checklist items completed: fuzzy match modal, enhanced algorithm, summary panel, mobile responsive, Playwright tests
14 lines
441 B
INI
14 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
|