Fixed typo in recursive run

This commit is contained in:
Zachary Delcoco 2024-09-06 14:59:30 -05:00
parent 8ffaa20a72
commit 1f3c728cc5

View File

@ -350,7 +350,7 @@ const runSingleRequest = async function (
if (parentDir === collectionPath) {
return;
} else {
return checkForTests(parentDir);
return checkForFolderTests(parentDir);
}
}