suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
15 lines (11 loc) • 348 B
JavaScript
/**
* Default constants
*/
const constants = {
API_CONSTRUCTOR_NAME: 'SUITEST_API',
API_LIB_PATH_IDENTIFIERS: ['suitest-js-api/lib/', 'suitest-js-api/index.js', 'suitest-js-api/config'],
ASSERTION_ERROR_TYPE: 'AssertionError [ERR_ASSERTION]',
DEFAULT_SCREENSHOT_DIR: 'screenshots',
};
Object.freeze(constants);
module.exports = constants;