(ios): add ios13 local config (#199)

Co-authored-by: Erisu <ellis.bryan@gmail.com>
diff --git a/.travis.yml b/.travis.yml
index abf7ed3..49ae071 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,7 +34,7 @@
 
 _ios: &_ios
   os: osx
-  osx_image: xcode11.5
+  osx_image: xcode11.6
 
 _android: &_android
   language: android
@@ -61,6 +61,8 @@
       <<: *_ios
     - env: PLATFORM=local/ios-10.0
       <<: *_ios
+    - env: PLATFORM=local/ios-13.6
+      <<: *_ios
 
     # many tests with saucelabs
     - env: PLATFORM=browser-chrome
diff --git a/conf/pr/local/ios-13.6.config.json b/conf/pr/local/ios-13.6.config.json
new file mode 100644
index 0000000..6bc3098
--- /dev/null
+++ b/conf/pr/local/ios-13.6.config.json
@@ -0,0 +1,7 @@
+{
+    "platform": "ios@latest",
+    "action": "run",
+    "cleanUpAfterRun": true,
+    "target": "iPhone-11, 13.6",
+    "verbose": true
+}
diff --git a/lib/utils/utilities.js b/lib/utils/utilities.js
index f899ee9..72f63cd 100644
--- a/lib/utils/utilities.js
+++ b/lib/utils/utilities.js
@@ -84,6 +84,9 @@
         return;
     }
 
+    logger.info(`Avaliable Emulators:\n${result.stdout}`);
+    logger.info(`Filtering for Targeted Emulator: ${target}`);
+
     // Return the individual target that is filtered from the known simulators/emulators based on provided target name. (default: ^iPhone)
     return result.stdout
         .split('\n')