mirror of
https://github.com/django-components/django-components.git
synced 2025-11-17 13:52:56 +00:00
* feat: add decorator for writing component tests * refactor: udpate changelog + update deps pins * refactor: fix deps * refactor: make cached_ref into generic and fix linter errors * refactor: fix coverage testing * refactor: use global var instead of env var for is_testing state
9 lines
153 B
Python
9 lines
153 B
Python
# Public API for test-related functionality
|
|
# isort: off
|
|
from django_components.util.testing import djc_test
|
|
|
|
# isort: on
|
|
|
|
__all__ = [
|
|
"djc_test",
|
|
]
|