adelie-ai 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adelie/__init__.py +1 -1
- package/adelie/agents/tester_ai.py +1 -1
- package/package.json +1 -1
package/adelie/__init__.py
CHANGED
|
@@ -275,7 +275,7 @@ def run_tests(
|
|
|
275
275
|
if ext in (".ts", ".tsx", ".jsx"):
|
|
276
276
|
# TypeScript/JSX: use npx tsx to execute directly
|
|
277
277
|
# (vitest's include patterns conflict with Tester AI naming)
|
|
278
|
-
run_cmd = f'npx tsx "{script_path}"'
|
|
278
|
+
run_cmd = f'npx -y tsx "{script_path}"'
|
|
279
279
|
else:
|
|
280
280
|
run_cmd = f'node "{script_path}"'
|
|
281
281
|
else:
|