31 lines
No EOL
1.1 KiB
TypeScript
31 lines
No EOL
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");
|
|
}); |