From e252d5f7f38e9957f71461c3a2c0d6b4188e097c Mon Sep 17 00:00:00 2001 From: Andreas Tzionis Date: Tue, 7 Nov 2023 11:55:34 +0200 Subject: [PATCH] minor fix --- e2e/build-react/build.spec.ts | 2 +- e2e/build/build.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/build-react/build.spec.ts b/e2e/build-react/build.spec.ts index ac6249e9..4233de4c 100644 --- a/e2e/build-react/build.spec.ts +++ b/e2e/build-react/build.spec.ts @@ -3,5 +3,5 @@ import { test, expect } from '@playwright/test' test('should show the production version', async ({ page }) => { await page.goto('/') await expect(page).toHaveURL('/') - await expect(page.locator('text=Understand')).toBeVisible() + await expect(page.locator('#page')).toBeVisible() }) diff --git a/e2e/build/build.spec.ts b/e2e/build/build.spec.ts index ac6249e9..4233de4c 100644 --- a/e2e/build/build.spec.ts +++ b/e2e/build/build.spec.ts @@ -3,5 +3,5 @@ import { test, expect } from '@playwright/test' test('should show the production version', async ({ page }) => { await page.goto('/') await expect(page).toHaveURL('/') - await expect(page.locator('text=Understand')).toBeVisible() + await expect(page.locator('#page')).toBeVisible() })