deps: bump mocha and babel
This commit is contained in:
parent
125a781cc7
commit
90b5e5e09f
2 changed files with 17 additions and 8 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue