mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-13 11:00:01 +00:00
Add chrome.cast.media class tests
This commit is contained in:
11
test/spec/shim/media/SeekRequest.spec.js
Normal file
11
test/spec/shim/media/SeekRequest.spec.js
Normal file
@@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
|
||||
describe("chrome.cast.media.SeekRequest", () => {
|
||||
it("should have all properties", async () => {
|
||||
const seekRequest = new chrome.cast.media.SeekRequest();
|
||||
|
||||
expect(seekRequest.currentTime).toBe(null);
|
||||
expect(seekRequest.customData).toBe(null);
|
||||
expect(seekRequest.resumeState).toBe(null);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user