Command to allow the user to buy more effects #424

Merged
Vylpes merged 13 commits from feature/CD-381 into develop 2025-03-26 18:30:16 +00:00
Showing only changes of commit bc98d6ba75 - Show all commits

View file

@ -151,21 +151,6 @@ describe("Confirm", () => {
});
test("GIVEN id is not supplied, EXPECT error", async () => {
// Assert
const embed = {
id: "embed",
setColor: jest.fn(),
setFooter: jest.fn(),
};
const row = {
id: "row",
};
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
embed,
row,
});
// Act
await Buy.Execute(interaction as unknown as ButtonInteraction);
@ -182,20 +167,6 @@ describe("Confirm", () => {
// Assert
interaction.customId += " unclaimed";
const embed = {
id: "embed",
setColor: jest.fn(),
setFooter: jest.fn(),
};
const row = {
id: "row",
};
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
embed,
row,
});
// Act
await Buy.Execute(interaction as unknown as ButtonInteraction);
@ -212,20 +183,6 @@ describe("Confirm", () => {
// Assert
interaction.customId += " unclaimed invalid";
const embed = {
id: "embed",
setColor: jest.fn(),
setFooter: jest.fn(),
};
const row = {
id: "row",
};
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
embed,
row,
});
// Act
await Buy.Execute(interaction as unknown as ButtonInteraction);
@ -242,20 +199,6 @@ describe("Confirm", () => {
// Assert
interaction.customId += " unclaimed 0";
const embed = {
id: "embed",
setColor: jest.fn(),
setFooter: jest.fn(),
};
const row = {
id: "row",
};
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
embed,
row,
});
// Act
await Buy.Execute(interaction as unknown as ButtonInteraction);