detox
Version:
E2E tests and automation for mobile
22 lines (17 loc) • 359 B
JavaScript
class DeviceInitCache {
constructor() {
this._cache = new Map();
}
/**
* @param {string} adbName
* @returns {boolean}
*/
hasInitialized(adbName) {
return this._cache.get(adbName) === true;
}
/** @param {string} adbName */
setInitialized(adbName) {
this._cache.set(adbName, true);
}
}
module.exports = DeviceInitCache;