Fix multidrop not handling externally hosted images correctly #447

Merged
Vylpes merged 2 commits from feature/CD-442 into hotfix/0.9.1 2025-05-24 10:04:24 +01:00
2 changed files with 26 additions and 0 deletions
Showing only changes of commit 04e5962a11 - Show all commits

View file

@ -0,0 +1,13 @@
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");
});
});

View file

@ -0,0 +1,13 @@
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");
});
});