Skip to content

Commit 89b0e25

Browse files
committed
Fix a broken UI integration test
1 parent 7798ba6 commit 89b0e25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/tests/specs/settings.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test.beforeEach(async ({ page }) => {
1212
test("Settings - Filter", async ({ page }) => {
1313
await expect(page.getByTestId("settings-search-widget").locator("input")).toBeEmpty();
1414
expect(page.getByTestId("config-groups")).toBeDefined();
15-
await expect(page.getByTestId("config-groups").locator(".configuration-property")).toHaveCount(8);
15+
await expect(page.getByTestId("config-groups").locator(".configuration-property")).toHaveCount(10);
1616

1717
await page.getByTestId("settings-search-widget").locator("input").fill("legacy");
1818
await expect(page.getByTestId("settings-search-widget").locator("input")).toHaveValue("legacy");

0 commit comments

Comments
 (0)