SuitestAutomation/suitest-js-api

View on GitHub
lib/constants/contentMode.js

Summary

Maintainability
A
30 mins
Test Coverage
A
100%
/* 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;