mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-17 23:53:25 +02:00
Logcat works now, but still kind of wondering how the messages should arrive.
This commit is contained in:
@@ -28,16 +28,16 @@ util.inherits(AlreadyGroupedError, Error)
|
||||
|
||||
module.exports.AlreadyGroupedError = AlreadyGroupedError
|
||||
|
||||
function NotGroupedError() {
|
||||
function NoGroupError() {
|
||||
Error.call(this)
|
||||
this.name = 'NotGroupedError'
|
||||
this.name = 'NoGroupError'
|
||||
this.message = 'Not a member of any group'
|
||||
Error.captureStackTrace(this, NotGroupedError)
|
||||
Error.captureStackTrace(this, NoGroupError)
|
||||
}
|
||||
|
||||
util.inherits(NotGroupedError, Error)
|
||||
util.inherits(NoGroupError, Error)
|
||||
|
||||
module.exports.NotGroupedError = NotGroupedError
|
||||
module.exports.NoGroupError = NoGroupError
|
||||
|
||||
module.exports.match = Promise.method(function(capabilities, requirements) {
|
||||
return requirements.every(function(req) {
|
||||
|
||||
Reference in New Issue
Block a user