Decreased to 1 retry for this file only (#16623)

This commit is contained in:
Andreas Zerbst
2024-06-19 09:49:04 +02:00
committed by Nikolaj Geisle
parent b2b112eb8b
commit 6e3a6917c8

View File

@@ -3,6 +3,7 @@ import {test} from '@umbraco/playwright-testhelpers';
test.describe('Tours', () => {
const timeout = 60000;
test.describe.configure({ retries: 1 });
test.beforeEach(async ({ page, umbracoApi }, testInfo) => {
await umbracoApi.report.report(testInfo);
await umbracoApi.login();
@@ -100,4 +101,4 @@ test.describe('Tours', () => {
await expect(await umbracoUi.getGlobalHelp()).toBeVisible();
await getPercentage(17, timeout, page);
});
});
});