vylbot-app/tests/events/MessageEvents/MessageDelete.test.ts
Ethan Lane 69ef94dbb5
All checks were successful
continuous-integration/drone/push Build is passing
Add placeholder tests
2024-02-03 19:29:28 +00:00

21 lines
823 B
TypeScript

describe('MessageDelete', () => {
test.todo('EXPECT embed to be logged');
test.todo("GIVEN message.guild is null, EXPECT nothing to happen");
test.todo("GIVEN message author is a bot, EXPECT nothing to happen");
test.todo("GIVEN event.message.delete.enabled setting is not found, EXPECT nothing to happen");
test.todo("GIVEN event is not enabled, EXPECT nothing to happen");
test.todo("GIVEN channel is ignored, EXPECT nothing to happen");
test.todo("GIVEN message content is null, EXPECT content to be defaulted");
test.todo("GIVEN message had at least 1 attachment, EXPECT attachments field to be added");
test.todo("GIVEN event.message.delete.channel setting is not found, EXPECT nothing to happen");
test.todo("GIVEN channel is not found, EXPECT nothing to happen");
});