mirror of
https://github.com/appium/appium.git
synced 2026-01-14 22:30:14 -06:00
11 lines
377 B
Ruby
11 lines
377 B
Ruby
require 'rubygems'
|
|
require 'appium_lib'
|
|
require 'test/unit'
|
|
extend Test::Unit::Assertions
|
|
|
|
ANDROID_APP = ENV['SAUCE_LABS'] ? 'http://appium.github.io/appium/assets/ApiDemos-debug.apk' : '../apps/ApiDemos-debug.apk'
|
|
ANDROID_PACKAGE = 'io.appium.android.apis'
|
|
|
|
|
|
IOS_APP = ENV['SAUCE_LABS'] ? 'http://appium.github.io/appium/assets/TestApp7.1.app.zip' : '../apps/TestApp.app.zip'
|