detox
Version:
E2E tests and automation for mobile
36 lines (33 loc) • 633 B
JavaScript
/**
* @type Detox.DetoxSystemUIConfig
*/
const minimalConfigPreset = {
keyboard: 'hide',
touches: 'show',
navigationMode: '3-button',
statusBar: {
notifications: 'hide',
wifiSignal: 'strong',
cellSignal: 'none',
batteryLevel: 'full',
charging: false,
clock: '1337',
},
};
/**
* @type Detox.DetoxSystemUIConfig
*/
const genyConfigPreset = {
keyboard: 'hide',
statusBar: {
notifications: 'hide',
wifiSignal: 'strong',
cellSignal: 'none',
batteryLevel: 'full',
charging: true,
},
};
module.exports = {
minimal: minimalConfigPreset,
genymotion: genyConfigPreset,
};