File size: 366 Bytes
7a4c980 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { assertEquals } from "./deps.ts";
export async function dashManifest(baseUrl: string) {
const resp = await fetch(
`${baseUrl}/api/manifest/dash/id/jNQXAC9IVRw?local=true&unique_res=1`,
{
method: "GET",
},
);
await resp.body?.cancel();
assertEquals(resp.status, 200, "response status code is not 200");
}
|