it("should execute all commands given in sync mode", async () => {
      const files = ["test1.tmp", "test2.tmp", "test3.tmp"];
      await Promise.all(files.map(async file => existsSync(file) && fs.unlink(file)));
      await execNext(
        files.map(file => `touch ${file}`),