Skipped flaky test (#15905)

This commit is contained in:
Andreas Zerbst
2024-03-19 13:31:08 +01:00
committed by GitHub
parent e7f40affac
commit d2f8b18456

View File

@@ -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;