Skip to content

Commit

Permalink
Merge 42b0869 into 503d727
Browse files Browse the repository at this point in the history
  • Loading branch information
imurchie committed Jul 13, 2018
2 parents 503d727 + 42b0869 commit a9b85c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
language: android
dist: precise
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
android:
components:
# use the latest revision of Android SDK Tools
Expand All @@ -25,6 +31,7 @@ env:
- ANDROID_EMU_NAME=test
- ANDROID_EMU_TARGET=android-21
- ANDROID_EMU_ABI=armeabi-v7a
- CC=gcc-4.9 CXX=g++-4.9
matrix:
- TEST=unit RECURSIVE=--recursive START_EMU=0
- TEST=functional
Expand Down
4 changes: 2 additions & 2 deletions test/functional/commands/keyboard/keyboard-e2e-specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ let languageTests = [
];

describe('keyboard', function () {
this.retries(3);

describe('ascii', function () {
let driver;
before(async function () {
Expand Down Expand Up @@ -168,8 +170,6 @@ describe('keyboard', function () {
}

it('should be able to clear a password field', async function () {
this.retries(3);

let els = await driver.findElements('class name', EDITTEXT_CLASS);
let el = els[1].ELEMENT;

Expand Down

0 comments on commit a9b85c1

Please sign in to comment.