15 lines
580 B
TypeScript
15 lines
580 B
TypeScript
|
describe('GuildMemberRemove', () => {
|
||
|
test.todo("EXPECT embed to be logged");
|
||
|
|
||
|
test.todo("GIVEN member.guild is null, EXPECT nothing to happen");
|
||
|
|
||
|
test.todo("GIVEN event.member.remove.enabled setting is not found, EXPECT nothing to happen");
|
||
|
|
||
|
test.todo("GIVEN event is not enabled, EXPECT nothing to happen");
|
||
|
|
||
|
test.todo("GIVEN member.joinedAt is null, EXPECT value to be defaulted");
|
||
|
|
||
|
test.todo("GIVEN event.member.remove.channel setting is not found, EXPECT nothing to happen");
|
||
|
|
||
|
test.todo("GIVEN channel is not found, EXPECT nothing to happen");
|
||
|
});
|