Skip to content

Commit 6b85f29

Browse files
Bump wd version
1 parent 0bd5747 commit 6b85f29

File tree

3 files changed

+26
-7
lines changed

3 files changed

+26
-7
lines changed

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ install:
3737
- npm install
3838
- npm run tslint
3939
- cd ../tests
40+
- npm i appium@APPIUM_VERSION
4041
- npm install
4142
before_script:
4243
- echo no | android create avd --force -n test -t android-$EMULATOR_API_LEVEL --abi $ANDROID_ABI

Diff for: tests/app/App_Resources/Android/app.gradle

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Add your native dependencies here:
2+
3+
// Uncomment to add recyclerview-v7 dependency
4+
//dependencies {
5+
// compile 'com.android.support:recyclerview-v7:+'
6+
//}
7+
8+
android {
9+
defaultConfig {
10+
generatedDensities = []
11+
applicationId = "org.nativescript.tests"
12+
13+
//override supported platforms
14+
// ndk {
15+
// abiFilters.clear()
16+
// abiFilters "armeabi-v7a"
17+
// }
18+
19+
}
20+
aaptOptions {
21+
additionalParameters "--no-version-vectors"
22+
}
23+
}

Diff for: tests/package.json

+2-7
Original file line numberDiff line numberDiff line change
@@ -56,20 +56,15 @@
5656
"karma-nativescript-launcher": "^0.4.0",
5757
"lazy": "1.0.11",
5858
"mocha": "^2.4.5",
59-
"nativescript-dev-appium": "0.4.0",
59+
"nativescript-dev-appium": "^0.4.0",
6060
"nativescript-dev-typescript": "^0.4.0",
6161
"socket.io": "1.4.8",
6262
"socket.io-client": "1.4.8",
6363
"tslint": "^4.5.1",
6464
"typescript": "~2.2.0",
65-
"wd": "0.4.0"
65+
"wd": "^1.2.0"
6666
},
6767
"scripts": {
68-
"updateTests": "grunt updateTests",
69-
"appium-android": "tns build android && npm run run-appium-android",
70-
"run-appium-android": "nativescript-dev-appium android",
71-
"appium-ios-simulator": "tns build ios && nativescript-dev-appium ios-simulator",
72-
"tslint": "tslint --project tsconfig.json --config tslint.json",
7368
"appium": "nativescript-dev-appium"
7469
}
7570
}

0 commit comments

Comments
 (0)