vylbot-app/tests/events/MessageEvents/MessageUpdate.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

23 lines
903 B
TypeScript

describe('MessageUpdate', () => {
test.todo("EXPECT embed to be logged");
test.todo("GIVEN newMessage.guild is null, EXPECT nothing to happen");
test.todo("GIVEN message author is a bot, EXPECT nothing to happen");
test.todo("GIVEN message contents are the same, EXPECT nothing to happen");
test.todo("GIVEN event.message.update.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 oldMessage.content is null, EXPECT oldMessage to be defaulted");
test.todo("GIVEN newMessage.content is null, EXPECT newMessage to be defaulted");
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");
});