Skip to content

Commit

Permalink
fix: bump DEVICE_NAME const on e2s tests to iPhone X (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfioretti committed Jun 14, 2020
1 parent dada003 commit a01821c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -8,6 +8,8 @@ env:
matrix:
include:
- osx_image: xcode7.3
env:
- DEVICE_NAME="iPhone 6"
- osx_image: xcode9.4
- osx_image: xcode10
- osx_image: xcode10.1
Expand Down
2 changes: 1 addition & 1 deletion test/simctl-e2e-specs.js
Expand Up @@ -14,7 +14,7 @@ const should = chai.should();
chai.use(chaiAsPromised);

describe('simctl', function () {
const DEVICE_NAME = process.env.DEVICE_NAME || 'iPhone 6';
const DEVICE_NAME = process.env.DEVICE_NAME || 'iPhone X';
const MOCHA_TIMEOUT = 200000;
this.timeout(MOCHA_TIMEOUT);

Expand Down

0 comments on commit a01821c

Please sign in to comment.