Skip to content

Commit

Permalink
Update testData.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Starman3787 committed Nov 14, 2024
1 parent 4307f4f commit f3bbee6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/testData.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
Message,
Role,
ScheduledEvent,
SlashCommand,
Thread,
} from "./structures.js";
import CategoryChannel from "./structures/CategoryChannel.js";
Expand Down Expand Up @@ -1349,6 +1350,10 @@ export const TEST_INTERACTIONS = {
const interaction = new Interaction(client, TEST_DATA.INTERACTION);
return interaction;
},
SLASH_COMMAND: (client) => {
const interaction = new SlashCommand(client, TEST_DATA.SLASH_COMMAND);
return interaction;
},
BUTTON_CLICK: (client) => {
const interaction = new ButtonClick(client, TEST_DATA.BUTTON_CLICK, {
guildId: TEST_DATA.GUILD_ID,
Expand Down

0 comments on commit f3bbee6

Please sign in to comment.