codeflash-internal/django/aiservice/testgen/instrumentation/javascript/__init__.py
2026-01-14 22:15:27 -08:00

13 lines
375 B
Python

"""
JavaScript test instrumentation module.
This module provides unified instrumentation for JavaScript tests,
working identically for both generated and existing tests.
"""
from testgen.instrumentation.javascript.instrument_javascript import (
instrument_javascript_tests,
get_jest_helper_path,
)
__all__ = ["instrument_javascript_tests", "get_jest_helper_path"]