diff --git a/playwright/first.spec.ts b/playwright/first.spec.ts index 94fff5580..64bb604b2 100644 --- a/playwright/first.spec.ts +++ b/playwright/first.spec.ts @@ -2,5 +2,5 @@ import { test, expect } from '@playwright/test'; test('Should display an error is the backend is not on', async ({ page }) => { await page.goto('/'); - await expect(page.getByText('Metadata management application')).toBeVisible(); + await expect(page.getByText('Test management application')).toBeVisible(); });