Socket
Socket
Sign inDemoInstall

wdio-testingbot-service

Package Overview
Dependencies
49
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    wdio-testingbot-service

WebdriverIO service for better TestingBot integration


Version published
Weekly downloads
12
increased by1100%
Maintainers
1
Install size
4.48 MB
Created
Weekly downloads
 

Readme

Source

Greenkeeper badge npm dependencies Status devDependencies Status CircleCI

WDIO TestingBot Service

A WebdriverIO service. It updates the job metadata ('name', 'passed', 'tags', 'public', 'build', 'extra') and runs TestingBot Tunnel if desired.

Installation

The easiest way is to keep wdio-testingbot-service as a devDependency in your package.json.

{
  "devDependencies": {
    "wdio-testingbot-service": "~0.1"
  }
}

You can simple do it by:

npm install wdio-testingbot-service --save-dev

Instructions on how to install WebdriverIO can be found here.

Configuration

In order to use the service you need to set user and key in your wdio.conf.js file, and set the host option to 'hub.testingbot.com'. If you want to use TestingBot Tunnel you just need to set tbTunnel: true.

// wdio.conf.js
export.config = {
  // ...
  services: ['testingbot'],
  user: process.env.TB_KEY,
  key: process.env.TB_SECRET,
  tbTunnel: true,
  // ...
};

Options

user

Your TestingBot API KEY.

Type: String

key

Your TestingBot API SECRET.

Type: String

tbTunnel

If true it runs the TestingBot Tunnel and opens a secure connection between a TestingBot Virtual Machine running your browser tests.

Type: Boolean
Default: false

tbTunnelOpts

Apply TestingBot Tunnel options (e.g. to change port number or logFile settings). See this list for more information.

Type: Object
Default: {}


For more information on WebdriverIO see the homepage.

Keywords

FAQs

Last updated on 30 Jan 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc