13 lines
434 B
TypeScript
13 lines
434 B
TypeScript
|
describe('constructor', () => {
|
||
|
test.todo("EXPECT properties to be set");
|
||
|
});
|
||
|
|
||
|
describe("execute", () => {
|
||
|
test.todo("EXPECT lobby command to announce a lobby setup");
|
||
|
|
||
|
test.todo("GIVEN interaction.channelId is null, EXPECT nothing to happen");
|
||
|
|
||
|
test.todo("GIVEN channel is not setup in the database as a lobby, EXPECT error");
|
||
|
|
||
|
test.todo("GIVEN lobby command was last used within the cooldown, EXPECT error");
|
||
|
});
|