Skip to content

Commit 1865d37

Browse files
cbr7benoitf
authored andcommitted
chore(test): increasing timeout for cicd
Signed-off-by: Vladimir Lazar <[email protected]>
1 parent a1a3214 commit 1865d37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/playwright/src/bootc-extension.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ test.describe('BootC Extension', () => {
207207
test.describe
208208
.serial(`Bootc examples for bootable image`, () => {
209209
test(`Pull ${example.appName} bootable image`, async ({ runner }) => {
210-
test.setTimeout(310_000);
210+
test.setTimeout(610_000);
211211

212212
[page, webview] = await handleWebview(runner);
213213
const bootcNavigationBar = new BootcNavigationBar(page, webview);
214214
const bootcExamplesPage = await bootcNavigationBar.openBootcExamples();
215215
await playExpect(bootcExamplesPage.heading).toBeVisible();
216-
await bootcExamplesPage.pullImage(example.appName);
216+
await bootcExamplesPage.pullImage(example.appName, 600_000);
217217
});
218218

219219
types = ['QCOW2', 'AMI'];
@@ -256,13 +256,13 @@ test.describe('BootC Extension', () => {
256256
test.describe
257257
.serial('Bootc Dashboard', () => {
258258
test('Pull demo image from dashboard', async ({ runner }) => {
259-
test.setTimeout(310_000);
259+
test.setTimeout(610_000);
260260

261261
[page, webview] = await handleWebview(runner);
262262
const bootcNavigationBar = new BootcNavigationBar(page, webview);
263263
const bootcDashboardPage = await bootcNavigationBar.openBootcDashboard();
264264
await playExpect(bootcDashboardPage.heading).toBeVisible();
265-
await bootcDashboardPage.pullDemoImage();
265+
await bootcDashboardPage.pullDemoImage(600_000);
266266
});
267267

268268
types = ['QCOW2', 'AMI'];

0 commit comments

Comments
 (0)