mirror of
https://github.com/openstf/stf
synced 2025-10-06 03:50:04 +02:00
Fix missing dependency in logcat plugin.
This commit is contained in:
parent
aec95d87a4
commit
912dd6b58a
1 changed files with 3 additions and 3 deletions
|
@ -7,8 +7,9 @@ var wireutil = require('../../../wire/util')
|
||||||
module.exports = syrup.serial()
|
module.exports = syrup.serial()
|
||||||
.dependency(require('../support/adb'))
|
.dependency(require('../support/adb'))
|
||||||
.dependency(require('../support/router'))
|
.dependency(require('../support/router'))
|
||||||
|
.dependency(require('../support/push'))
|
||||||
.dependency(require('../support/quit'))
|
.dependency(require('../support/quit'))
|
||||||
.define(function(options, adb, router, quit) {
|
.define(function(options, adb, router, push, quit) {
|
||||||
var log = logger.createLogger('device:plugins:logcat')
|
var log = logger.createLogger('device:plugins:logcat')
|
||||||
|
|
||||||
function openService() {
|
function openService() {
|
||||||
|
@ -50,6 +51,7 @@ module.exports = syrup.serial()
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
reset()
|
||||||
logcat.on('entry', entryListener)
|
logcat.on('entry', entryListener)
|
||||||
|
|
||||||
router
|
router
|
||||||
|
@ -60,8 +62,6 @@ module.exports = syrup.serial()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
reset()
|
|
||||||
|
|
||||||
return logcat
|
return logcat
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue