UNPKG

suitest-js-api

Version:

Suitest is a test automation and device manipulation tool for living room devices and web browsers.

24 lines (18 loc) 259 B
/** * Context class */ class Context { constructor() { this._context = null; } get context() { return this._context; } setContext(newContext) { this._context = newContext; } clear() { this._context = null; } } module.exports = Context;