diff --git a/tests/playwright/src/ai-lab-extension.spec.ts b/tests/playwright/src/ai-lab-extension.spec.ts index b89c664d1..169e4698d 100644 --- a/tests/playwright/src/ai-lab-extension.spec.ts +++ b/tests/playwright/src/ai-lab-extension.spec.ts @@ -213,8 +213,8 @@ test.describe.serial(`AI Lab extension installation and verification`, () => { }); test(`Make POST request to the model service for ${modelName}`, async ({ request }) => { - test.skip(isWindows || modelName === 'ggerganov/whisper.cpp', `Skipping POST request for ${modelName}`); - test.setTimeout(70_000); + test.skip(modelName === 'ggerganov/whisper.cpp', `Skipping POST request for ${modelName}`); + test.setTimeout(610_000); const port = await modelServiceDetailsPage.getInferenceServerPort(); const url = `http://localhost:${port}/v1/chat/completions`; @@ -237,7 +237,7 @@ test.describe.serial(`AI Lab extension installation and verification`, () => { }); playExpect(response.ok()).toBeTruthy(); playExpect(await response.text()).toContain('Madrid'); - }).toPass({ timeout: 60_000 }); + }).toPass({ timeout: 600_000, intervals: [5_000] }); }); test(`Delete model service for ${modelName}`, async () => {