forked from AkkomaGang/akkoma
Fix VideoHandlingTest
This commit is contained in:
parent
da83839dc1
commit
2936adbbce
1 changed files with 9 additions and 3 deletions
|
@ -58,7 +58,9 @@ test "it remaps video URLs as attachments if necessary" do
|
|||
"href" =>
|
||||
"https://peertube.moe/static/webseed/df5f464b-be8d-46fb-ad81-2d4c2d1630e3-480.mp4",
|
||||
"mediaType" => "video/mp4",
|
||||
"type" => "Link"
|
||||
"type" => "Link",
|
||||
"width" => 480,
|
||||
"height" => nil
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -79,7 +81,9 @@ test "it remaps video URLs as attachments if necessary" do
|
|||
"href" =>
|
||||
"https://framatube.org/static/webseed/6050732a-8a7a-43d4-a6cd-809525a1d206-1080.mp4",
|
||||
"mediaType" => "video/mp4",
|
||||
"type" => "Link"
|
||||
"type" => "Link",
|
||||
"width" => nil,
|
||||
"height" => 1080
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -107,7 +111,9 @@ test "it works for peertube videos with only their mpegURL map" do
|
|||
"href" =>
|
||||
"https://peertube.stream/static/streaming-playlists/hls/abece3c3-b9c6-47f4-8040-f3eed8c602e6/abece3c3-b9c6-47f4-8040-f3eed8c602e6-1080-fragmented.mp4",
|
||||
"mediaType" => "video/mp4",
|
||||
"type" => "Link"
|
||||
"type" => "Link",
|
||||
"width" => nil,
|
||||
"height" => 1080
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue