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

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