vylbot-app/tests/commands/poll.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

19 lines
644 B
TypeScript

describe('Constructor', () => {
test.todo('EXPECT properties to be set');
});
describe('Execute', () => {
test.todo("EXPECT a poll to be created");
test.todo("GIVEN title is not supplied, EXPECT nothing to happen");
test.todo("GIVEN option1 is not supplied, EXPECT nothing to happen");
test.todo("GIVEN option2 is not supplied, EXPECT nothing to happen");
test.todo("GIVEN option3 is not supplied, EXPECT a 2 option poll to be created");
test.todo("GIVEN option4 is not supplied, EXPECT a 3 option poll to be created");
test.todo("GIVEN option5 is not supplied, EXPECT a 4 option poll to be created");
});