diff --git a/tests/playwright/tests/post-update.spec.js b/tests/playwright/tests/post-update.spec.js index 2bcf67fe6..ebd094b4d 100644 --- a/tests/playwright/tests/post-update.spec.js +++ b/tests/playwright/tests/post-update.spec.js @@ -54,6 +54,10 @@ test('Add update to project', async ({ page }) => { page.locator('.pinned__update__heading').locator('visible=true') ).toContainText(project.update_title); await page.getByTestId('updates').click(); - await page.locator('.update').locator('nth=1').getByTestId('member-update').isVisible(); + await page + .locator('.update') + .locator('nth=1') + .getByTestId('member-update') + .isVisible(); await loginPage.logout(); });