mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
"use strict";
|
|
|
|
describe("chrome.cast.media.StopRequest", () => {
|
|
it("should have all properties", async () => {
|
|
const stopRequest = new chrome.cast.media.StopRequest();
|
|
|
|
expect(stopRequest.customData).toBe(null);
|
|
});
|
|
});
|