vylbot-app/tests/commands/rules.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
533 B
TypeScript

beforeEach(() => {
process.env = {};
});
describe('Constructor', () => {
test.todo('EXPECT properties to be set');
});
describe('Execute', () => {
test.todo("GIVEN interaction is not a chat input command, EXPECT nothing to happen");
test.todo("GIVEN invalid subcommand is given, EXPECT invalid error");
});
describe("access", () => {
test.todo("GIVEN interaction.guildId is null, EXPECT nothing to happen");
test.todo("GIVEN rules.access.label setting is not supplied, EXPECT label to be defaulted");
});