From dfd04523e34248f77811096ab3a009414a4cca1d Mon Sep 17 00:00:00 2001 From: Harry Tang Date: Sat, 13 Jul 2024 21:49:26 +0300 Subject: [PATCH] fix: fixes e2e test --- e2e/home.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/home.spec.ts b/e2e/home.spec.ts index 31a4172..faa6009 100644 --- a/e2e/home.spec.ts +++ b/e2e/home.spec.ts @@ -5,6 +5,6 @@ test('should open the home page', async ({ page }) => { await page.goto('/') // Check that the title is correct await expect(page.locator('h1')).toContainText( - 'Solutions Architect & Cloud Engineer', + 'Solutions Architect & DevOps Engineer', ) })