Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bazel/protractor

Package Overview
Dependencies
Maintainers
4
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bazel/protractor - npm Package Compare versions

Comparing version 0.36.2 to 0.37.0

2

package.json

@@ -5,3 +5,3 @@ {

"license": "Apache-2.0",
"version": "0.36.2",
"version": "0.37.0",
"repository": {

@@ -8,0 +8,0 @@ "type" : "git",

@@ -17,4 +17,9 @@ /**

*/
const DEBUG = false;
const path = require('path');
function log_verbose(...m) {
// This is a template file so we use __filename to output the actual filename
if (!!process.env['VERBOSE_LOGS']) console.error(`[${path.basename(__filename)}]`, ...m);
}
const configPath = 'TMPL_config';

@@ -25,4 +30,3 @@ const onPreparePath = 'TMPL_on_prepare';

if (DEBUG)
console.info(`Protractor test starting with:
log_verbose(`running with
cwd: ${process.cwd()}

@@ -82,3 +86,3 @@ configPath: ${configPath}

conf = baseConf.config;
if (DEBUG) console.info(`Base protractor configuration: ${JSON.stringify(conf, null, 2)}`);
log_verbose(`base protractor configuration: ${JSON.stringify(conf, null, 2)}`);
}

@@ -115,3 +119,3 @@

const webTestMetadata = require(process.env['WEB_TEST_METADATA']);
if (DEBUG) console.info(`WEB_TEST_METADATA: ${JSON.stringify(webTestMetadata, null, 2)}`);
log_verbose(`WEB_TEST_METADATA: ${JSON.stringify(webTestMetadata, null, 2)}`);
if (webTestMetadata['environment'] === 'sauce') {

@@ -190,4 +194,4 @@ // If a sauce labs browser is chosen for the test such as

// Export the complete protractor configuration
if (DEBUG) console.info(`Protractor configuration: ${JSON.stringify(conf, null, 2)}`);
log_verbose(`protractor configuration: ${JSON.stringify(conf, null, 2)}`);
exports.config = conf;

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