Skip to content

Commit 8be10e2

Browse files
fix: re-export jest patterns for backward compatibility
1 parent b59882e commit 8be10e2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

codeflash/verification/parse_test_output.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
from codeflash.languages import is_javascript
2424

2525
# Import Jest-specific parsing from the JavaScript language module
26-
from codeflash.languages.javascript.parse import parse_jest_test_xml as _parse_jest_test_xml
26+
from codeflash.languages.javascript.parse import (
27+
jest_end_pattern,
28+
jest_start_pattern,
29+
parse_jest_test_xml as _parse_jest_test_xml,
30+
)
2731
from codeflash.models.models import (
2832
ConcurrencyMetrics,
2933
FunctionTestInvocation,

0 commit comments

Comments
 (0)