deps: bump mocha and babel

This commit is contained in:
Calvin Montgomery 2018-06-03 21:55:41 -07:00
parent 125a781cc7
commit 90b5e5e09f
2 changed files with 17 additions and 8 deletions

View file

@ -51,7 +51,10 @@ describe('onPreUserJoin Ban Check', () => {
return 'anotherTroll';
},
realip: bannedIP
realip: bannedIP,
kick() {
}
};
module.onUserPreJoin(user, null, (error, res) => {
@ -67,7 +70,10 @@ describe('onPreUserJoin Ban Check', () => {
return 'troll';
},
realip: '5.5.5.5'
realip: '5.5.5.5',
kick() {
}
};
module.onUserPreJoin(user, null, (error, res) => {
@ -83,7 +89,10 @@ describe('onPreUserJoin Ban Check', () => {
return '';
},
realip: bannedIP
realip: bannedIP,
kick() {
}
};
module.onUserPreJoin(user, null, (error, res) => {