Skip to content

Commit ac72327

Browse files
authored
chore(test): update playground test to use most frequent model, increase timeout (#3096)
* chore(test): updating model to ibm-research/granite-3.2-8b-instruct-GGUF Signed-off-by: Tibor Dancs (work-laptop) <[email protected]> * chore(test): adding playground test to smoke suite, increasing model download timeout Signed-off-by: Tibor Dancs (work-laptop) <[email protected]> --------- Signed-off-by: Tibor Dancs (work-laptop) <[email protected]>
1 parent 6210a90 commit ac72327

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/playwright/src/ai-lab-extension.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ test.describe.serial(`AI Lab extension installation and verification`, () => {
350350
});
351351
});
352352

353-
['lmstudio-community/granite-3.0-8b-instruct-GGUF'].forEach(modelName => {
354-
test.describe.serial(`AI Lab playground creation and deletion`, () => {
353+
['ibm-research/granite-3.2-8b-instruct-GGUF'].forEach(modelName => {
354+
test.describe.serial(`AI Lab playground creation and deletion`, { tag: '@smoke' }, () => {
355355
let catalogPage: AILabCatalogPage;
356356
let playgroundsPage: AILabPlaygroundsPage;
357357
let playgroundDetailsPage: AILabPlaygroundDetailsPage;
@@ -375,7 +375,7 @@ test.describe.serial(`AI Lab extension installation and verification`, () => {
375375
}
376376
await playExpect
377377
// eslint-disable-next-line sonarjs/no-nested-functions
378-
.poll(async () => await waitForCatalogModel(modelName), { timeout: 300_000, intervals: [5_000] })
378+
.poll(async () => await waitForCatalogModel(modelName), { timeout: 600_000, intervals: [5_000] })
379379
.toBeTruthy();
380380
});
381381

0 commit comments

Comments
 (0)