testdriverai 4.2.0-test.2 → 4.2.0-test.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent.js +2 -0
- package/package.json +1 -1
package/agent.js
CHANGED
|
@@ -898,7 +898,9 @@ let run = async (file, shouldSave = false, shouldExit = true) => {
|
|
|
898
898
|
await exit(true);
|
|
899
899
|
}
|
|
900
900
|
|
|
901
|
+
console.log(process.env["TD_INTERPOLATION_VARS"])
|
|
901
902
|
let interpolationVars = JSON.parse(process.env["TD_INTERPOLATION_VARS"] || '{}');
|
|
903
|
+
console.log(interpolationVars);
|
|
902
904
|
|
|
903
905
|
// Inject environment variables into any ${VAR} strings
|
|
904
906
|
yml = parser.interpolate(yml, interpolationVars);
|