dowwntime 1.3.4 → 1.3.6

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/cli.mjs CHANGED
@@ -14886,7 +14886,7 @@ const debug$1 = debug("dowwntime");
14886
14886
  */
14887
14887
  const measureRequest = async (url$2, options) => {
14888
14888
  const startAt = Date.now();
14889
- return await new Promise((resolve$1) => {
14889
+ return await new Promise((resolve$1, reject) => {
14890
14890
  let tlsHandshakeAt;
14891
14891
  let firstByteAt;
14892
14892
  const req = ((typeof url$2 === "string" ? new URL(url$2) : url$2).protocol === "https:" ? https : http).request(url$2, options, (res) => {
@@ -14901,6 +14901,9 @@ const measureRequest = async (url$2, options) => {
14901
14901
  });
14902
14902
  });
14903
14903
  });
14904
+ req.on("error", (err) => {
14905
+ reject(err);
14906
+ });
14904
14907
  req.on("socket", (socket) => {
14905
14908
  socket.on("secureConnect", () => {
14906
14909
  tlsHandshakeAt = Date.now();
@@ -28335,6 +28338,7 @@ const run = async (options) => {
28335
28338
  debug$1(`No example value for parameter ${param.name} in ${path$4}`);
28336
28339
  continue;
28337
28340
  }
28341
+ if (!exampleValue) continue;
28338
28342
  if (param.in === "path") {
28339
28343
  const placeholder = `{${param.name}}`;
28340
28344
  _path = _path.replace(placeholder, exampleValue);