django-components/src/django_components/testing.py
Juro Oravec 7dfcb447c4
feat: add decorator for writing component tests (#1008)
* 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
2025-03-02 19:46:12 +01:00

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",
]