suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
16 lines (12 loc) • 307 B
JavaScript
/* eslint-disable key-spacing */
const elementState = {
SELECTED: 'selected',
HIGHLIGHTED: 'highlighted',
DISABLED: 'disabled',
NORMAL: 'normal',
APPLICATION: 'application',
FOCUSED: 'focused',
RESERVED: 'reserved',
};
Object.freeze(elementState);
module.exports = elementState;