All checks were successful
Test / build (push) Successful in 48s
- Fix multidrop command not handling externally hosted images correctly - It was trying to find the `https://` link in the file system, which it couldn't find - Fixed by copying existing logic from the drop command into the multidrop command #442 Reviewed-on: #447 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
13 lines
455 B
TypeScript
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");
|
|
});
|
|
});
|