rx-player
Version:
Canal+ HTML5 Video Player
12 lines (10 loc) • 464 B
text/typescript
import { describe, it, expect } from "vitest";
import { METAPLAYLIST, LOCAL_MANIFEST } from "../index";
import { LOCAL_MANIFEST as FEATURE_LOCAL_MANIFEST } from "../local";
import { METAPLAYLIST as FEATURE_METAPLAYLIST } from "../metaplaylist";
describe("Experimental Features", () => {
it("should export all experimental features", () => {
expect(METAPLAYLIST).toBe(FEATURE_METAPLAYLIST);
expect(LOCAL_MANIFEST).toBe(FEATURE_LOCAL_MANIFEST);
});
});