diff --git a/packages/embark/src/lib/core/services_monitor.js b/packages/embark/src/lib/core/services_monitor.js index cfee3bb94..0850d9a17 100644 --- a/packages/embark/src/lib/core/services_monitor.js +++ b/packages/embark/src/lib/core/services_monitor.js @@ -80,7 +80,7 @@ ServicesMonitor.prototype.startMonitor = function () { self.addCheck(pluginCheck.checkName, pluginCheck.checkFn, pluginCheck.time); }); - Object.entries(this.checkList).forEach(([checkName, check]) => { + Object.keys(this.checkList).forEach(checkName => { try { self.initCheck(checkName); } catch (err) {