feat/rename collectionVariables variable name to runtimeVariables (#2638)

* pr review changes

* collection root object in export json

* import environment updates

* tests run execution order fix for collection runs

* updated validations

* collectionVariables -> runtimeVariables

* removed husky, adjusted indentation

---------

Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
This commit is contained in:
lohit
2024-07-17 17:21:03 +05:30
committed by GitHub
parent e60aaf2ea9
commit ab9bcbe5ed
24 changed files with 128 additions and 132 deletions

View File

@@ -116,7 +116,7 @@ describe('runtime', () => {
const runtime = new ScriptRuntime();
const result = await runtime.runRequestScript(script, { ...baseRequest }, {}, {}, '.', null, process.env);
expect(result.collectionVariables.validation).toBeTruthy();
expect(result.runtimeVariables.validation).toBeTruthy();
});
});
@@ -171,7 +171,7 @@ describe('runtime', () => {
null,
process.env
);
expect(result.collectionVariables.validation).toBeTruthy();
expect(result.runtimeVariables.validation).toBeTruthy();
});
});
});