Fix failing integration test (runtime mode was added to system info)

This commit is contained in:
Sebastiaan Janssen
2022-12-12 15:48:36 +01:00
parent 5c993ea3c6
commit b366b26f19

View File

@@ -25,7 +25,7 @@ test.describe('System Information', () => {
test('Check System Info Displays', async ({page, umbracoApi, umbracoUi}) => {
await openSystemInformation(page, umbracoUi);
await expect(page.locator('.table').locator('tr')).toHaveCount(14);
await expect(page.locator('.table').locator('tr')).toHaveCount(15);
await expect(await page.locator("tr", {hasText: "Current Culture"})).toContainText(enCulture);
await expect(await page.locator("tr", {hasText: "Current UI Culture"})).toContainText(enCulture);
});