Socket
Socket
Sign inDemoInstall

@nestia/e2e

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestia/e2e - npm Package Compare versions

Comparing version 0.3.1-dev.20230526-4 to 0.3.1-dev.20230526-5

9

lib/DynamicExecutor.js

@@ -266,6 +266,11 @@ "use strict";

return [2 /*return*/, "continue"];
else if (typeof closure !== "function")
else if (typeof closure !== "function") {
console.log(key, "skipped to not a function");
return [2 /*return*/, "continue"];
else if (options.filter && options.filter(key) === false)
}
else if (options.filter && options.filter(key) === false) {
console.log(key, " filtered out due to configuration");
return [2 /*return*/, "continue"];
}
console.log(key, "is on execution");
func = function () { return __awaiter(_this, void 0, void 0, function () {

@@ -272,0 +277,0 @@ return __generator(this, function (_a) {

{
"name": "@nestia/e2e",
"version": "0.3.1-dev.20230526-4",
"version": "0.3.1-dev.20230526-5",
"description": "E2E test utilify functions",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -233,5 +233,10 @@ import chalk from "chalk";

continue;
else if (typeof closure !== "function") continue;
else if (options.filter && options.filter(key) === false)
else if (typeof closure !== "function") {
console.log(key, "skipped to not a function");
continue;
} else if (options.filter && options.filter(key) === false) {
console.log(key, " filtered out due to configuration");
continue;
}
console.log(key, "is on execution");

@@ -238,0 +243,0 @@ const func = async () => {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc