suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
22 lines (18 loc) • 537 B
JavaScript
/* eslint-disable key-spacing */
const contentMode = {
SCALE_TO_FILL: 'scaleToFill',
SCALE_ASPECT_FIT: 'scaleAspectFit',
SCALE_ASPECT_FILL: 'scaleAspectFill',
REDRAW: 'redraw',
CENTER: 'center',
TOP: 'top',
BOTTOM: 'bottom',
BOTTOM_LEFT: 'bottomLeft',
BOTTOM_RIGHT: 'bottomRight',
LEFT: 'left',
RIGHT: 'right',
TOP_LEFT: 'topLeft',
TOP_RIGHT: 'topRight',
};
Object.freeze(contentMode);
module.exports = contentMode;