card-drop/tests/commands/multidrop.test.ts
Ethan Lane 04e5962a11
All checks were successful
Test / build (push) Successful in 44s
Add todo tests
2025-05-21 15:32:36 +01:00

13 lines
455 B
TypeScript

describe("execute", () => {
describe("GIVEN randomCard image is hosted locally", () => {
test.todo("EXPECT image to be uploaded directly");
});
describe("GIVEN randomCard image is hosted via http", () => {
test.todo("EXPECT image link to be directly added to embed");
});
describe("GIVEN randomCard image is hosted via https", () => {
test.todo("EXPECT image link to be directly added to embed");
});
});