We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b58d41 commit f20b3b8Copy full SHA for f20b3b8
src/service.js
@@ -240,7 +240,7 @@ export default class LambdaRestService {
240
return;
241
}
242
243
- const status = 'status: ' + (this._failures > 0 ? 'failed' : 'passed');
+ const status = (this._failures > 0 ? 'failed' : 'passed');
244
245
if (!this._browser.isMultiremote) {
246
log.info(`Update (reloaded) job with sessionId ${oldSessionId}, ${status}`);
@@ -356,7 +356,7 @@ export default class LambdaRestService {
356
console.log(testCnt);
357
358
359
- body.status_ind = status > 0 ? 'failed' : 'passed';
+ body.status_ind = status;
360
return body;
361
362
0 commit comments