fix: increase test-auth timeout to 900s for 5 browser variants
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
parent
e01f1abab4
commit
c56e3e669e
1 changed files with 1 additions and 1 deletions
|
|
@ -335,7 +335,7 @@ export async function testAuth(instanceId: string, meetingUrl: string, botEmail?
|
||||||
if (botEmail) payload.botEmail = botEmail;
|
if (botEmail) payload.botEmail = botEmail;
|
||||||
if (botPassword) payload.botPassword = botPassword;
|
if (botPassword) payload.botPassword = botPassword;
|
||||||
const response = await api.post(`/api/teamsbot/${instanceId}/test-auth`, payload, {
|
const response = await api.post(`/api/teamsbot/${instanceId}/test-auth`, payload, {
|
||||||
timeout: 300000, // 5 minutes — tests run sequentially
|
timeout: 900000, // 15 minutes — 5 browser variants run sequentially
|
||||||
});
|
});
|
||||||
return response.data;
|
return response.data;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue