mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
fix: reorder voiceServerUpdate test to maintain alphabetical ordering
Co-authored-by: almeidx <42935195+almeidx@users.noreply.github.com>
This commit is contained in:
@@ -1380,15 +1380,15 @@ client.on('userUpdate', ({ client: oldClient }, { client: newClient }) => {
|
||||
expectType<Client<true>>(newClient);
|
||||
});
|
||||
|
||||
client.on('voiceServerUpdate', payload => {
|
||||
expectType<GatewayVoiceServerUpdateDispatchData>(payload);
|
||||
});
|
||||
|
||||
client.on('voiceStateUpdate', ({ client: oldClient }, { client: newClient }) => {
|
||||
expectType<Client<true>>(oldClient);
|
||||
expectType<Client<true>>(newClient);
|
||||
});
|
||||
|
||||
client.on('voiceServerUpdate', payload => {
|
||||
expectType<GatewayVoiceServerUpdateDispatchData>(payload);
|
||||
});
|
||||
|
||||
client.on('webhooksUpdate', ({ client }) => expectType<Client<true>>(client));
|
||||
|
||||
client.on('guildCreate', async g => {
|
||||
|
||||
Reference in New Issue
Block a user