🎉 Smithery is now a part of Arcade.dev! Read more in our announcement here
Custom test patterns and fixtures for {project}. Covers E2E, integration, and specialized testing requirements.
Custom testing patterns, fixtures, and strategies for this project.
If you're about to:
STOP -> Use proper fixtures -> Ensure isolation -> Then write test
Location: tests/unit/
tests/unit/
Patterns:
Location: tests/integration/
tests/integration/
Location: tests/e2e/ or playwright/
tests/e2e/
playwright/
Location: tests/fixtures/
tests/fixtures/
Usage:
# Python example from tests.fixtures import sample_user, sample_order def test_order_creation(sample_user, sample_order): # Test uses pre-configured fixtures pass
Location: tests/mocks/
tests/mocks/
Available mocks:
test_*.py
test_<function>_<scenario>
test_*_integration.py
test_<component>_<action>
*.spec.ts
test('<feature> - <scenario>')
Tests run in CI:
Edit this file to add: