Skip to content

Commit 61c16b8

Browse files
committed
Merge pull request #21 from alex-mcleod/master
Upgraded Appium to support latest version of xcode
2 parents 106bb18 + b803241 commit 61c16b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ It has sample data in the `models.js` file. For example, there is a user bleonar
3030

3131
The integration tests are run using [Appium](http://appium.io/).
3232

33-
There is also an [example](https://github.com/taskrabbit/ReactNativeSampleApp/blob/master/.travis.yml) of to to run it on Travis CI: [![Build Status](https://travis-ci.org/taskrabbit/ReactNativeSampleApp.svg?branch=master)](https://travis-ci.org/taskrabbit/ReactNativeSampleApp)
33+
There is also an [example](https://github.com/taskrabbit/ReactNativeSampleApp/blob/master/.travis.yml) of how to run it on Travis CI: [![Build Status](https://travis-ci.org/taskrabbit/ReactNativeSampleApp.svg?branch=master)](https://travis-ci.org/taskrabbit/ReactNativeSampleApp)
3434

3535
To run tests:
3636

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"superagent": "1.5.0"
2525
},
2626
"devDependencies": {
27-
"appium": "1.4.13",
27+
"appium": "1.5.1",
2828
"babel-core": "^6.1.20",
2929
"babel-eslint": "4.1.4",
3030
"babel-plugin-external-helpers-2": "^6.1.4",

test/helpers/driver.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ var UNLIMITED = 100000;
5555

5656
var caps = {
5757
browserName: '',
58-
'appium-version': '1.4.8',
58+
'appium-version': '1.5.1',
5959
platformName: 'iOS',
60-
platformVersion: '9.0',
61-
deviceName: 'iPhone 6',
60+
platformVersion: '9.3',
61+
deviceName: 'iPhone 6s',
6262
autoLaunch: 'true',
6363
newCommandTimeout: UNLIMITED,
6464
app: process.cwd() + "/testbuild/test_ios/sample_ios.zip"
@@ -110,4 +110,4 @@ module.exports = function(callback) {
110110
});
111111
});
112112
});
113-
};
113+
};

0 commit comments

Comments
 (0)