Merge pull request #3601 from lohxt1/fix/cli--env

fix: cli -- envs path resolution
This commit is contained in:
lohit 2024-12-06 17:51:57 +05:30 committed by GitHub
commit 1e45725ba1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,7 +94,7 @@ const printRunSummary = (results) => {
};
const createCollectionFromPath = (collectionPath) => {
const environmentsPath = `${collectionPath}/environments`;
const environmentsPath = path.join(collectionPath, `environments`);
const getFilesInOrder = (collectionPath) => {
let collection = {
pathname: collectionPath