vylbot-app/tests/commands/code.test.ts

25 lines
749 B
TypeScript
Raw Normal View History

2024-02-03 19:29:28 +00:00
describe('constructor', () => {
test.todo("EXPECT properties to be set");
});
describe("execute", () => {
test.todo("GIVEN interaction is not a chat input command, EXPECT nothing to happen");
});
describe("randomise", () => {
test.todo("EXPECT entry code to be randomised");
test.todo("GIVEN interaction.guildId is null, EXPECT nothing to happen");
});
describe("embed", () => {
test.todo("EXPECT embed to be sent");
test.todo("GIVEN interaction.guildId is null, EXPECT nothing to happen");
test.todo("GIVEN interaction.channel is null, EXPECT nothing to happen");
test.todo("GIVEN verification.code setting is null, EXPECT error");
test.todo("GIVEN verification.code setting is empty, EXPECT error");
});