mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
14 lines
427 B
JavaScript
14 lines
427 B
JavaScript
"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);
|
|
});
|
|
});
|