Skip to content

Commit

Permalink
fix: Debug core sdk issue 6
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinshahfws committed Aug 21, 2024
1 parent 7bb83b0 commit bcbfaa1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/sdks/core/test/suite/device.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ test("Device.make()", () => {

test("Device.hdcp()", () => {
const expectedOutput: Device.BooleanMap = {
"hdcp1.4": true,
"hdcp2.2": true,
"hdcp14": true,
"hdcp22": true,
};
return Device.hdcp().then((res: Device.BooleanMap) => {
expect(res).toEqual(expectedOutput);
Expand All @@ -133,8 +133,7 @@ test("Device.audio()", () => {
return Device.audio().then((res: Device.AudioProfiles) => {
expect(res).toEqual({
dolbyAtmos: true,
"dolbyDigital5.1": true,
"dolbyDigital5.1+": true,
"dolbyDigital51": true,
stereo: true,
});
});
Expand Down

0 comments on commit bcbfaa1

Please sign in to comment.