vylbot-app/tests/events/MemberEvents/GuildMemberUpdate/NicknameChanged.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

15 lines
597 B
TypeScript

describe('NicknameChanged', () => {
test.todo('EXPECT embed to be logged');
test.todo("GIVEN event.member.update.enabled setting is not found, EXPECT nothing to happen");
test.todo("GIVEN event is not enabled, EXPECT nothing to happen");
test.todo("GIVEN oldNickname is null, EXPECT oldNickname to be defaulted");
test.todo("GIVEN newNickname is null, EXPECT newNickname to be defaulted");
test.todo("GIVEN event.member.update.channel setting is not found, EXPECT nothing to happen");
test.todo("GIVEN log channel can not be found, EXPECT nothing to happen");
});