You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/11/28 16:37:58 UTC

[cordova-paramedic] branch janpio-readme updated (926ad72 -> 1744f37)

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a change to branch janpio-readme
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git.


    from 926ad72  better `useTunnel` docs
     new d8cfe92  subheadlines for CLI
     new 1744f37  move some options around

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md | 53 +++++++++++++++++++++++++++++++++--------------------
 1 file changed, 33 insertions(+), 20 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[cordova-paramedic] 02/02: move some options around

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-readme
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git

commit 1744f37dccac97eed1bc82b221ae80423513a504
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Wed Nov 28 17:37:46 2018 +0100

    move some options around
---
 README.md | 44 ++++++++++++++++++++++++++------------------
 1 file changed, 26 insertions(+), 18 deletions(-)

diff --git a/README.md b/README.md
index bbed1bc..bfba866 100644
--- a/README.md
+++ b/README.md
@@ -132,15 +132,30 @@ Just builds the project, without running the tests.
 cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --justbuild
 ```
 
-#### `--externalServerUrl` (optional)
+#### `--verbose` (optional)
 
-Useful when testing on real device (`--target` or `--device` parameter) so that tests results from device could be posted back to paramedic server. Caution: You have to include the 
+Verbose mode. Display more information output
 
 ```
-cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --externalServerUrl http://10.0.8.254
+cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --verbose
+```
+
+#### `--cli` (optional)
+
+A path to Cordova CLI. Useful when you're testing against locally installed Cordova version.
+
+```
+cordova-paramedic --platform android --plugin cordova-plugin-device --cli ./cordova-cli/bin/cordova
+```
 
 ### Emulator/Device to use for tests
 
+#### `--target` (optional)
+
+Android only parameter. The device ID (from `adb devices`) of a device the tests should be run on.
+
+```
+cordova-paramedic --platform android --plugin cordova-plugin-contacts --target 02e7f7e9215da7f8
 ```
 
 #### `--useTunnel` (optional)
@@ -152,6 +167,14 @@ Useful when testing on real devices and don't want to specify external ip addres
 cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --useTunnel
 ```
 
+#### `--externalServerUrl` (optional)
+
+Useful when testing on real device (`--device` parameter) so that tests results from device could be posted back to paramedic server.
+
+```
+cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --externalServerUrl http://10.0.8.254
+```
+
 #### `--browserify` (optional)
 
 Plugins are browserified into cordova.js.
@@ -169,21 +192,6 @@ cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --port 801
 cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --startport 8000 endport 8020
 ```
 
-#### `--verbose` (optional)
-
-Verbose mode. Display more information output
-
-```
-cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --verbose
-```
-
-#### `--cli` (optional)
-
-A path to Cordova CLI. Useful when you're testing against locally installed Cordova version.
-
-```
-cordova-paramedic --platform android --plugin cordova-plugin-device --cli ./cordova-cli/bin/cordova
-```
 ### Test configuration
 
 #### `--timeout` (optional)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[cordova-paramedic] 01/02: subheadlines for CLI

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-readme
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git

commit d8cfe928f8ab5ceba597ac0ceb8993a4369f4776
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Wed Nov 28 17:36:52 2018 +0100

    subheadlines for CLI
---
 README.md | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 8f40e33..bbed1bc 100644
--- a/README.md
+++ b/README.md
@@ -96,8 +96,9 @@ cordova-paramedic --platform android --plugin ./
 cordova-paramedic --platform android --plugin ./ --target 02e7f7e9215da7f8 --useTunnel
 ```
 
+## Command Line Interface
 
-### Command Line Interface
+### What to build/test
 
 #### `--platform` (required)
 
@@ -137,6 +138,9 @@ Useful when testing on real device (`--target` or `--device` parameter) so that
 
 ```
 cordova-paramedic --platform ios --plugin cordova-plugin-inappbrowser --externalServerUrl http://10.0.8.254
+
+### Emulator/Device to use for tests
+
 ```
 
 #### `--useTunnel` (optional)
@@ -180,6 +184,7 @@ A path to Cordova CLI. Useful when you're testing against locally installed Cord
 ```
 cordova-paramedic --platform android --plugin cordova-plugin-device --cli ./cordova-cli/bin/cordova
 ```
+### Test configuration
 
 #### `--timeout` (optional)
 
@@ -221,7 +226,7 @@ iOS only parameter. The path to the sample TCC DB file, with permissions, to be
 cordova-paramedic --platform ios --plugin cordova-plugin-contacts --tccDbPath tcc.db
 ```
 
-### Sauce-only arguments
+### Sauce Labs
 
 #### `--shouldUseSauce` (optional)
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org