mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
13 lines
375 B
Python
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"]
|