vylbot-app/tests/helpers/AuditTools.test.ts

31 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

2024-02-03 19:29:28 +00:00
describe('TypeToFriendlyText', () => {
test.todo("GIVEN auditType is General, EXPECT General to be returned");
test.todo("GIVEN auditType is Warn, EXPECT Warn to be returned");
test.todo("GIVEN auditType is Mute, EXPECT Mute to be returned");
test.todo("GIVEN auditType is Kick, EXPECT Kick to be returned");
test.todo("GIVEN auditType is Ban, EXPECT Ban to be returned");
test.todo("GIVEN auditType is Timeout, EXPECT Timeout to be returned");
test.todo("GIVEN auditType is none of these, EXPECT Other to be returned");
});
describe('StringToType', () => {
test.todo("GIVEN string is general, EXPECT General to be returned");
test.todo("GIVEN string is warn, EXPECT Warn to be returned");
test.todo("GIVEN string is mute, EXPECT Mute to be returned");
test.todo("GIVEN string is kick, EXPECT Kick to be returned");
test.todo("GIVEN string is ban, EXPECT Ban to be returned");
test.todo("GIVEN string is timeout, EXPECT Timeout to be returned");
test.todo("GIVEN string is none of these, EXPECT General to be returned");
});