1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-06 03:50:04 +02:00

Add sim serial to collected device properties.

This commit is contained in:
Simo Kinnunen 2014-04-15 18:37:39 +09:00
parent fb3892ab07
commit 35cd19dc28
4 changed files with 8 additions and 3 deletions

View file

@ -9,7 +9,11 @@ module.exports = syrup.serial()
function fetch() {
log.info('Fetching phone info')
return input.getProperties(['imei', 'phoneNumber'])
return input.getProperties([
'imei'
, 'phoneNumber'
, 'simSerial'
])
}
return fetch()