mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
Update packages/codeflash/runtime/loop-runner.js
Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com>
This commit is contained in:
parent
31e7116b84
commit
56941357c9
1 changed files with 4 additions and 1 deletions
|
|
@ -87,7 +87,10 @@ function findJestRunnerRecursive(nodeModulesPath, maxDepth = 5) {
|
|||
// - pnpm versioned directories (jest-runner@30.0.5)
|
||||
const shouldRecurse = entry.name === 'node_modules' ||
|
||||
entry.name.startsWith('@') ||
|
||||
entry.name.startsWith('.') ||
|
||||
const shouldRecurse = entry.name === 'node_modules' ||
|
||||
entry.name.startsWith('@') ||
|
||||
entry.name === '.pnpm' || entry.name === '.yarn' ||
|
||||
entry.name.startsWith('jest-runner@');
|
||||
entry.name.startsWith('jest-runner@');
|
||||
|
||||
if (shouldRecurse) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue