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