Github user vladimir-kotikov commented on a diff in the pull request:
https://github.com/apache/cordova-paramedic/pull/7#discussion_r65332069
--- Diff: lib/paramedic.js ---
@@ -167,8 +175,55 @@ ParamedicRunner.prototype.writeMedicConnectionUrl =
function(url) {
ParamedicRunner.prototype.runTests = function() {
var self = this;
+ if (this.config.shouldUseSauce()) {
+ var command = this.getCommandForBuilding();
+ logger.normal('cordova-paramedic: running command ' + command);
+
+ return execPromise(command)
+ .then(this.runSauceTests.bind(this));
+ } else {
+ return self.getCommandForStartingTests()
+ .then(function(command) {
+ self.setPermissions();
+ logger.normal('cordova-paramedic: running command ' + command);
+
+ return execPromise(command);
+ })
+ .then(function(code, output) {
+ // skip tests if it was just build
+ if (self.shouldWaitForTestResult()) {
+ return Q.promise(function(resolve, reject) {
+ // reject if timed out
+ self.waitForConnection().catch(reject);
+ // resolve if got results
+ self.waitForTests().then(resolve);
+ });
+ }
+ }, function(code, output) {
+ // this trace is automatically available in verbose mode
+ // so we check for this flag to not trace twice
+ if (!self.config.verbose) {
--- End diff --
Looks like there is some indentation issues here
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]