suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
23 lines (19 loc) • 500 B
JavaScript
/**
* Ws event content types
*/
const contentTypes = {
pairDevice: 'connectDevice',
releaseDevice: 'releaseDevice',
selectConfiguration: 'selectConfiguration',
enableDebugMode: 'enableDebugMode',
query: 'query',
eval: 'eval',
testLine: 'testLine',
takeScreenshot: 'takeScreenshot',
lastScreenshot: 'lastScreenshot',
getConfiguration: 'getConfiguration',
startRecording: 'startRecording',
stopRecording: 'stopRecording',
};
Object.freeze(contentTypes);
module.exports = contentTypes;