appium-cideprecated

Appium CI utils

Usage no npm install needed!

<script type="module">
  import appiumCi from 'https://cdn.skypack.dev/appium-ci';
</script>

README

appium-ci

Some libraries used to deploy CI for the various appium packages.

Status

Build Status Greenkeeper badge

Watch

npm run watch

Test

npm test

Android emulator

Sample Code

import { AndroidEmulator } from 'appium-ci';

let runTests = async () => {
  let emu = new AndroidEmulator('NEXUS_S_18_X86');
  emu.start();
  await emu.waitTillReady();

  // ... do something

  await emu.stop();
};