Skip to content

Commit 089e4aa

Browse files
committed
Fix speech token
1 parent 261ac1a commit 089e4aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/test/page-object/src/globals/testHelpers/token/fetchSpeechServicesCredentials.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ function createFetchSpeechServicesCredentials() {
22
let expireAfter = 0;
33
let resultPromise;
44

5-
return (url = 'https://hawo-mockbot4-token-app.blueriver-ce85e8f0.westus.azurecontainerapps.io/api/token/speech') => {
5+
return (
6+
url = 'https://hawo-mockbot4-token-app.blueriver-ce85e8f0.westus.azurecontainerapps.io/api/token/speech/msi'
7+
) => {
68
if (!resultPromise || Date.now() > expireAfter) {
79
expireAfter = Date.now() + 5000;
810
resultPromise = fetch(url, { method: 'POST' })

0 commit comments

Comments
 (0)