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

Add option to control screen resetting on device release

This commit is contained in:
Piotr Orzechowski 2018-03-07 11:11:27 +01:00
parent 4463fe139c
commit e8db600878
4 changed files with 25 additions and 2 deletions

View file

@ -108,6 +108,12 @@ module.exports.builder = function(yargs) {
, type: 'number'
, demand: true
})
.option('screen-reset', {
describe: 'Go back to home screen and reset screen rotation ' +
'when user releases device. Negate with --no-screen-reset.'
, type: 'boolean'
, default: true
})
.option('screen-ws-url-pattern', {
describe: 'The URL pattern to use for the screen WebSocket.'
, type: 'string'
@ -165,5 +171,6 @@ module.exports.handler = function(argv) {
, muteMaster: argv.muteMaster
, lockRotation: argv.lockRotation
, cleanup: argv.cleanup
, screenReset: argv.screenReset
})
}