From e6fa52aab462569153231c0456f948866eb7b01e Mon Sep 17 00:00:00 2001 From: Starman <30315137+Starman3787@users.noreply.github.com> Date: Sat, 26 Oct 2024 15:01:28 +0100 Subject: [PATCH] Update testData.js --- src/testData.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/testData.js b/src/testData.js index 33fad21b..f9872690 100644 --- a/src/testData.js +++ b/src/testData.js @@ -3,6 +3,7 @@ import { INTENTS, PERMISSIONS } from "./constants.js"; import BetterRequestHandler from "./rest/betterRequestHandler.js"; import { Emoji, + Interaction, Invite, Member, Message, @@ -1342,3 +1343,10 @@ export const TEST_INVITES = { return invite; }, }; + +export const TEST_INTERACTIONS = { + GENERIC_INTERACTION: (client) => { + const interaction = new Interaction(client, TEST_DATA.INTERACTION); + return interaction; + }, +};