diff --git a/test-playwright/00-noid-tests.spec.ts b/test-playwright/00-noid-tests.spec.ts index 7f2619dc8..12746ff39 100644 --- a/test-playwright/00-noid-tests.spec.ts +++ b/test-playwright/00-noid-tests.spec.ts @@ -1,6 +1,6 @@ import { test, expect } from '@playwright/test'; -test('Confirm usage of test API', async ({ page }, testInfo) => { +test('Confirm usage of test API (may fail if you are running your own Time Safari)', async ({ page }, testInfo) => { // Load account view await page.goto('./account'); await page.getByRole('heading', { name: 'Advanced' }).click(); diff --git a/test-playwright/40-add-contact.spec.ts b/test-playwright/40-add-contact.spec.ts index 204dbd97c..f6254745f 100644 --- a/test-playwright/40-add-contact.spec.ts +++ b/test-playwright/40-add-contact.spec.ts @@ -81,6 +81,5 @@ test('Add contact, record gift, confirm gift', async ({ page }) => { // Refresh claim page, Confirm button should be hidden await page.reload(); - await expect(page.getByRole('button', { name: 'Confirm' })).toBeVisible(); await expect(page.getByRole('button', { name: 'Confirm' })).toBeHidden(); }); \ No newline at end of file