actually allow removeApp to work with selendroid (fix #1686 for real)

This commit is contained in:
Jonathan Lipps
2014-01-10 09:00:45 -08:00
parent 2fdc5df30d
commit 44b8ed86e0
3 changed files with 10 additions and 1 deletions
+7
View File
@@ -75,6 +75,13 @@ describeWd('basic', function(h) {
});
});
it('should be able to uninstall the app', function(done) {
h.driver.execute("mobile: removeApp", [{bundleId: appPkg}], function(err) {
should.not.exist(err);
done();
});
});
});
describeWd('command timeouts', function(h) {