mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 18:39:58 +00:00
Implement blank file tests + fix shim
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
|
||||
describe("chrome.cast.Timeout", () => {
|
||||
it("should have all properties", async () => {
|
||||
const timeout = new chrome.cast.Timeout();
|
||||
|
||||
expect(timeout.leaveSession).toBe(3000);
|
||||
expect(timeout.requestSession).toBe(60000);
|
||||
expect(timeout.sendCustomMessage).toBe(3000);
|
||||
expect(timeout.setReceiverVolume).toBe(3000);
|
||||
expect(timeout.stopSession).toBe(3000);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user