This commit is contained in:
Amish Shah
2020-03-01 18:01:39 +00:00
parent d7c5baf7f3
commit 3142d8cf18
3 changed files with 11 additions and 7 deletions

View File

@@ -5,10 +5,10 @@ const Discord = require('../src');
const { Util } = Discord;
const client = new Discord.Client({
// To see a difference, comment out disableMentions and run the same tests using disableEveryone
// You will notice that all messages will mention @everyone
//disableEveryone: true
disableMentions: 'everyone'
// To see a difference, comment out disableMentions and run the same tests using disableEveryone
// You will notice that all messages will mention @everyone
// disableEveryone: true
disableMentions: 'everyone',
});
const tests = [

View File

@@ -1,5 +1,7 @@
const Discord = require('../');
'use strict';
const { token } = require('./auth');
const Discord = require('../');
const sharder = new Discord.ShardingManager(`${process.cwd()}/test/shard.js`, { token, respawn: false });