vylbot-app/tests/helpers/AuditTools.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

31 lines
1.1 KiB
TypeScript

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");
});