Skip to content

Commit

Permalink
Merge pull request #39 from scottdixon/scottdixon-travisci
Browse files Browse the repository at this point in the history
TravisCI
  • Loading branch information
imurchie committed Sep 14, 2015
2 parents 76f13c7 + 2eb2095 commit 96025c3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- "0.12"
after_success:
- gulp coveralls
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"watch": "./node_modules/.bin/gulp"
},
"devDependencies": {
"appium-gulp-plugins": "^1.3.10",
"appium-gulp-plugins": "^1.3.11",
"appium-test-support": "0.0.5",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
Expand Down
4 changes: 2 additions & 2 deletions test/functional/driver-e2e-specs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import 'mochawait';
import { AndroidDriver } from '../../..';
import { AndroidDriver } from '../..';
import sampleApps from 'sample-apps';

chai.should();
Expand Down Expand Up @@ -61,7 +61,7 @@ describe('createSession', function () {
caps.appActivity = 'io.appium.android.apis.app.HelloWorld';
caps.intentCategory = 'appium.android.intent.category.SAMPLE_CODE';
await driver.createSession(caps);
let {appPackage, appActivity} = await driver.adb.getFocusedPackageAndActivity();
let {appActivity} = await driver.adb.getFocusedPackageAndActivity();
appActivity.should.include('HelloWorld');
});
it.skip('should be able to load an app via package', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/unit/driver-specs.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'mochawait';
//import * as helpers from '../../lib/android-helpers';
//import ADB from 'appium-adb';
//import { withMocks } from 'appium-test-support';
import { AndroidDriver } from '../../..';
import { AndroidDriver } from '../..';

/*const should = */chai.should();
chai.use(chaiAsPromised);
Expand Down
2 changes: 1 addition & 1 deletion test/unit/touch-specs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import 'mochawait';
import { AndroidDriver } from '../../..';
import { AndroidDriver } from '../..';

chai.should();
chai.use(chaiAsPromised);
Expand Down

0 comments on commit 96025c3

Please sign in to comment.