Skip to content

Commit

Permalink
fix: Reverted device tests to original
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinshahfws committed Aug 27, 2024
1 parent d8431a5 commit d910e8c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 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 = {
"hdcp14": true,
"hdcp22": true,
"hdcp1.4": true,
"hdcp2.2": true,
};
return Device.hdcp().then((res: Device.BooleanMap) => {
expect(res).toEqual(expectedOutput);
Expand All @@ -133,7 +133,8 @@ test("Device.audio()", () => {
return Device.audio().then((res: Device.AudioProfiles) => {
expect(res).toEqual({
dolbyAtmos: true,
"dolbyDigital51": true,
"dolbyDigital5.1": true,
"dolbyDigital5.1+": true,
stereo: true,
});
});
Expand Down

0 comments on commit d910e8c

Please sign in to comment.