Files
fx_cast/test/spec/shim/media/StopRequest.spec.js
2019-01-12 13:40:13 +00:00

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);
});
});