From d2f8b1845698f83e3cee03fc175aa3aa1a71db89 Mon Sep 17 00:00:00 2001 From: Andreas Zerbst <73799582+andr317c@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:31:08 +0100 Subject: [PATCH] Skipped flaky test (#15905) --- .../Settings/Dashboard/ExamineManagement.spec.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/Settings/Dashboard/ExamineManagement.spec.ts b/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/Settings/Dashboard/ExamineManagement.spec.ts index 78ee563b60..86fcc27ea5 100644 --- a/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/Settings/Dashboard/ExamineManagement.spec.ts +++ b/tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/Settings/Dashboard/ExamineManagement.spec.ts @@ -2,15 +2,14 @@ import { expect } from '@playwright/test'; import {ConstantHelper, test} from '@umbraco/playwright-testhelpers'; test.describe('Examine Management Dashboard tests', () => { - test.beforeEach(async ({umbracoUi}) => { await umbracoUi.goToBackOffice(); await umbracoUi.examineManagement.goToSection(ConstantHelper.sections.settings); await umbracoUi.examineManagement.clickExamineManagementTab(); }); - test('can view indexers information', async ({umbracoApi, umbracoUi}) => { - // Arrange + test.skip('can view indexers information', async ({umbracoApi, umbracoUi}) => { + // Arrange const allIndexersData = await umbracoApi.indexer.getAll(); const indexerCount = allIndexersData.total; @@ -22,7 +21,7 @@ test.describe('Examine Management Dashboard tests', () => { }); test('can view the details of an index', async ({umbracoApi, umbracoUi}) => { - // Arrange + // Arrange const allIndexersData = await umbracoApi.indexer.getAll(); for (const index of allIndexersData.items) { const indexName = index.name;