Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed May 7, 2022
1 parent 8ee2621 commit f8145aa
Show file tree
Hide file tree
Showing 3 changed files with 151 additions and 128 deletions.
1 change: 1 addition & 0 deletions src/commands/Fairlight/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export * from './FairlightMixerMasterEqualizerResetCommand'
export * from './FairlightMixerMasterLimiterCommand'
export * from './FairlightMixerMasterPropertiesCommand'
export * from './FairlightMixerMonitorCommand'
// export * from './FairlightMixerMonitorSoloCommand'
export * from './FairlightMixerResetPeakLevelsCommand'
export * from './FairlightMixerSourceCommand'
export * from './FairlightMixerSourceCompressorCommand'
Expand Down
2 changes: 2 additions & 0 deletions src/commands/__tests__/converters-default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,7 @@ export const DefaultCommandConverters: CommandTestConverterSet = {
inputMasterGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputSidetoneGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputTalkbackGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputMasterEnabled: (val: boolean): PropertyAliasResult => ({ val: !val, name: 'inputMasterMuted' }),
},
},
CFMH: {
Expand All @@ -1118,6 +1119,7 @@ export const DefaultCommandConverters: CommandTestConverterSet = {
inputMasterGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputSidetoneGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputTalkbackGain: (val: number): PropertyAliasResult => ({ val: Math.round(val * 100) }),
inputMasterEnabled: (val: boolean): PropertyAliasResult => ({ val: !val, name: 'inputMasterMuted' }),
},
},
MOCP: {
Expand Down
Loading

0 comments on commit f8145aa

Please sign in to comment.