Add prettier and re-format .js files

This commit is contained in:
hensm
2021-08-31 07:59:58 +01:00
parent 9339b1a306
commit d6ca1325dc
38 changed files with 908 additions and 13254 deletions

View File

@@ -16,12 +16,16 @@ describe("chrome.cast.media.LoadRequest", () => {
it("should have expected assigned properties", async () => {
const mediaInfo = new chrome.cast.media.MediaInfo(
"__contentId", "video/mp4");
"__contentId",
"video/mp4"
);
const loadRequest = new chrome.cast.media.LoadRequest(mediaInfo);
expect(loadRequest.media).toEqual(jasmine.objectContaining({
contentId: "__contentId"
, contentType: "video/mp4"
}));
expect(loadRequest.media).toEqual(
jasmine.objectContaining({
contentId: "__contentId",
contentType: "video/mp4"
})
);
});
});