suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
10 lines (7 loc) • 421 B
JavaScript
const messageId = Object.freeze({
SETUP_SESSION: 'SETUP_SESSION', // passed from launcher to child on child connect, contains config object
REPL_START: 'REPL_START', // sent from child to launcher when startREPL() is called,
REPL_INIT: 'REPL_INIT', // launcher does some manipulations and sends REPL_INIT back
REPL_STOP: 'REPL_STOP', // send from child to parent when repl is closed
});
module.exports = messageId;