Skip to content

Commit

Permalink
Merge pull request #278 from NativeScript/release-6.1.3
Browse files Browse the repository at this point in the history
docs: cut the 6.1.3 release
  • Loading branch information
Zdravko authored Nov 13, 2019
2 parents e7d7345 + d5e0ed4 commit 0bbb353
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [6.1.3](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.2...6.1.3) (2019-11-12)


### Bug Fixes

* **ios:** apply getActualRectangle ([#267](https://github.com/NativeScript/nativescript-dev-appium/issues/267)) ([ebe92e0](https://github.com/NativeScript/nativescript-dev-appium/commit/ebe92e0))
* compareElement to use proper rectangle and generate proper diff image. ([cd76798](https://github.com/NativeScript/nativescript-dev-appium/commit/cd76798))
* resolve device type by device name ([#277](https://github.com/NativeScript/nativescript-dev-appium/issues/277)) ([e7d7345](https://github.com/NativeScript/nativescript-dev-appium/commit/e7d7345))



<a name="6.1.2"></a>
## [6.1.2](https://github.com/NativeScript/nativescript-dev-appium/compare/6.1.0...6.1.2) (2019-10-04)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativescript-dev-appium",
"version": "6.2.0",
"version": "6.1.3",
"description": "A NativeScript plugin to help integrate and run Appium tests",
"author": "NativeScript",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions test/device-manager.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ describe("start-appium-server-ios", async () => {
appPath: iosApp,
appiumCaps: {
platformName: Platform.IOS,
deviceName: /^iPhone XR$/,
platformVersion: /12/,
deviceName: /^iPhone XR 12$/,
platformVersion: "12.2",
fullReset: true
},
verbose: false
Expand Down Expand Up @@ -275,7 +275,7 @@ describe("dev-mode-options", async () => {

before("start devices", async () => {
await DeviceController.startDevice({ platform: Platform.ANDROID, apiLevel: "23" });
await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: <any>/12./, name: "iPhone XR" });
await DeviceController.startDevice({ platform: Platform.IOS, apiLevel: "12.2", name: "iPhone XR 12" });
appiumServer = new AppiumServer({});
await appiumServer.start(8399);
});
Expand Down

0 comments on commit 0bbb353

Please sign in to comment.