25 lines
756 B
TypeScript
25 lines
756 B
TypeScript
|
describe('constuctor', () => {
|
||
|
test.todo("EXPECT properties to be set");
|
||
|
});
|
||
|
|
||
|
describe('execute', () => {
|
||
|
test.todo("EXPECT channel to be added to the lobby database table");
|
||
|
|
||
|
test.todo("GIVEN channel is null, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN channel.channel is undefined, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN role is null, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN role.role is undefined, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN cooldown is null, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN cooldown.value is undefined, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN gameName is null, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN gameName.value is undefined, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN channel has already been set up in the database, EXPECT error");
|
||
|
});
|