@jterrazz/test 3.3.0 → 3.3.1

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/dist/index.js CHANGED
@@ -4908,12 +4908,17 @@ var ExecAdapter = class {
4908
4908
  this.command = command;
4909
4909
  }
4910
4910
  async exec(args, cwd) {
4911
+ const env = {
4912
+ ...process.env,
4913
+ INIT_CWD: void 0
4914
+ };
4911
4915
  try {
4912
4916
  return {
4913
4917
  exitCode: 0,
4914
4918
  stdout: execSync(`${this.command} ${args}`, {
4915
4919
  cwd,
4916
4920
  encoding: "utf8",
4921
+ env,
4917
4922
  stdio: [
4918
4923
  "pipe",
4919
4924
  "pipe",