Skip to content

Latest commit

 

History

History
executable file
·
26 lines (21 loc) · 615 Bytes

README.md

File metadata and controls

executable file
·
26 lines (21 loc) · 615 Bytes

appium-running Build Status

Tells you if appium is running or available.

Install

npm install appium-running

Usage

import ar from 'appium-running';
ar(4723).then( (success) => {
  if(success) {
    console.log("Appium is running, move on!");
    // run test
  }else{
    console.log("Appium is not running, exec appium &");
    // throw exception
  }
});