Skip to content

Commit e5b3939

Browse files
Update install test on Android
1 parent e02498c commit e5b3939

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed
+16-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
describe 'install' do
2-
# To Do: Blocked on https://github.com/appium/appium/issues/3030
3-
=begin
2+
# To Do: Blocked on https://github.com/appium/appium/issues/3032
3+
def pkg
4+
'io.appium.android.apis'
5+
end
6+
7+
def installed
8+
is_installed?(pkg).must_equal true
9+
end
10+
11+
def not_installed
12+
is_installed?(pkg).must_equal false
13+
end
14+
415
t 'install/uninstall/launch' do
16+
installed
517
remove 'io.appium.android.apis'
18+
not_installed
619
install caps[:app]
20+
installed
721
launch
822
end
9-
=end
1023
end

0 commit comments

Comments
 (0)