Implement buy subcommand
This commit is contained in:
parent
b2807adf4d
commit
38b0b8b301
2 changed files with 30 additions and 0 deletions
12
tests/commands/effects/Buy.test.ts
Normal file
12
tests/commands/effects/Buy.test.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import Buy from "../../../src/commands/effects/Buy";
|
||||
import EffectHelper from "../../../src/helpers/EffectHelper";
|
||||
|
||||
jest.mock("../../../src/helpers/EffectHelper");
|
||||
|
||||
describe("Buy", () => {
|
||||
test.todo("GIVEN result returns a string, EXPECT interaction replied with string");
|
||||
|
||||
test.todo("GIVEN result returns an embed, EXPECT interaction replied with embed and row");
|
||||
|
||||
test.todo("GIVEN quantity option is not supplied, EXPECT quantity to default to 1");
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue