more testing

This commit is contained in:
Rushil Umaretiya 2020-05-26 18:23:06 -04:00
parent 1ae11745ad
commit 8f2a303f55

View File

@ -4,5 +4,11 @@ module.exports = NodeHelper.create({
start: function() {
this.countDown = 10000000
},
socketNotificationReceived: function(notification, payload) {},
socketNotificationReceived: function(notification, payload) {
switch(notification) {
case "DO_YOUR_JOB":
this.sendSocketNotification("I_DID", (this.countDown - payload))
break
}
},
})