Skip to content

Commit d2f8b18

Browse files
authored
Skipped flaky test (#15905)
1 parent e7f40af commit d2f8b18

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/Umbraco.Tests.AcceptanceTest/tests/DefaultConfig/Settings/Dashboard/ExamineManagement.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ import { expect } from '@playwright/test';
22
import {ConstantHelper, test} from '@umbraco/playwright-testhelpers';
33

44
test.describe('Examine Management Dashboard tests', () => {
5-
65
test.beforeEach(async ({umbracoUi}) => {
76
await umbracoUi.goToBackOffice();
87
await umbracoUi.examineManagement.goToSection(ConstantHelper.sections.settings);
98
await umbracoUi.examineManagement.clickExamineManagementTab();
109
});
1110

12-
test('can view indexers information', async ({umbracoApi, umbracoUi}) => {
13-
// Arrange
11+
test.skip('can view indexers information', async ({umbracoApi, umbracoUi}) => {
12+
// Arrange
1413
const allIndexersData = await umbracoApi.indexer.getAll();
1514
const indexerCount = allIndexersData.total;
1615

@@ -22,7 +21,7 @@ test.describe('Examine Management Dashboard tests', () => {
2221
});
2322

2423
test('can view the details of an index', async ({umbracoApi, umbracoUi}) => {
25-
// Arrange
24+
// Arrange
2625
const allIndexersData = await umbracoApi.indexer.getAll();
2726
for (const index of allIndexersData.items) {
2827
const indexName = index.name;

0 commit comments

Comments
 (0)