Skip to content

Commit

Permalink
🐛 fix: Test CI and Release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bentwnghk committed May 4, 2024
1 parent 97634ca commit e0c82c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ exports[`settingsSelectors > currentSettings > should merge DEFAULT_SETTINGS and
"systemRole": "",
"tts": {
"showAllLocaleVoice": false,
"sttLocale": "en-US",
"ttsService": "edge",
"sttLocale": "auto",
"ttsService": "openai",
"voice": {
"openai": "alloy",
"edge": "en-US-JennyNeural",
},
},
},
Expand Down Expand Up @@ -86,11 +85,10 @@ exports[`settingsSelectors > defaultAgent > should merge DEFAULT_AGENT and s.set
"systemRole": "user",
"tts": {
"showAllLocaleVoice": false,
"sttLocale": "en-US",
"ttsService": "edge",
"sttLocale": "auto",
"ttsService": "openai",
"voice": {
"openai": "alloy",
"edge": "en-US-JennyNeural",
},
},
},
Expand Down
5 changes: 2 additions & 3 deletions src/store/user/slices/settings/selectors/selectors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ describe('settingsSelectors', () => {
params: {},
tts: {
showAllLocaleVoice: false,
sttLocale: 'en-US',
ttsService: 'edge',
sttLocale: 'auto',
ttsService: 'openai',
voice: {
openai: 'alloy',
edge: 'en-US-JennyNeural',
},
},
},
Expand Down

0 comments on commit e0c82c8

Please sign in to comment.