Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/oxygenhq/oxygen-ide
Browse files Browse the repository at this point in the history
  • Loading branch information
romovs committed Dec 23, 2018
2 parents 2e87a95 + 7852f67 commit 993b544
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/renderer/services/UserHints.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ export default class UserHintsService {
}

*_analyzeTestRunnerLogs(message, severity) {
if (message.indexOf('ECONNREFUSED') > -1 && message.indexOf('RuntimeError') > -1) {
if (
(message.indexOf('ECONNREFUSED') > -1 && message.indexOf('RuntimeError') > -1)
|| message.indexOf('APPIUM_UNREACHABLE_ERROR') > -1
) {
// get test mode
const testMode = yield select(state => state.test.runtimeSettings.testMode);
if (testMode && testMode === 'mob') {
Expand Down

0 comments on commit 993b544

Please sign in to comment.