New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

wdio-docker-service

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wdio-docker-service - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

10

lib/launcher.js

@@ -26,2 +26,3 @@ "use strict";

this.dockerLogs = config.dockerLogs;
this.watchMode = !!config.watch;
Logger.setLevel(config.logLevel || 'info');

@@ -69,6 +70,13 @@ const {

onComplete() {
if (this.docker) {
// do not stop docker if in watch mode
if (!this.watchMode && this.docker) {
return this.docker.stop();
}
}
afterSession() {
if (this.docker) {
this.docker.stop();
}
}
/**

@@ -75,0 +83,0 @@ * @param logFile

2

package.json
{
"name": "wdio-docker-service",
"version": "2.1.1",
"version": "2.1.2",
"description": "WebdriverIO service to start and stop docker container (for Selenium and more)",

@@ -5,0 +5,0 @@ "repository": {

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