Skip to content

Commit 8961b14

Browse files
fix: update test assertion to match POSIX-normalized paths in Jest config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4c70a21 commit 8961b14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_languages/test_javascript_test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def test_behavioral_tests_creates_runtime_config_for_external_tests(self):
122122
runtime_configs = [f for f in get_created_config_files() if "codeflash.runtime" in f.name]
123123
assert len(runtime_configs) == 1, f"Expected 1 runtime config, got {len(runtime_configs)}"
124124
config_content = runtime_configs[0].read_text(encoding="utf-8")
125-
assert str(external_path) in config_content, "Runtime config should contain external test directory"
125+
assert external_path.as_posix() in config_content, "Runtime config should contain external test directory"
126126

127127
clear_created_config_files()
128128

0 commit comments

Comments
 (0)