diff --git a/test-playwright/00-confirm-test-api.spec.ts b/test-playwright/00-confirm-test-api.spec.ts new file mode 100644 index 000000000..57fb14f55 --- /dev/null +++ b/test-playwright/00-confirm-test-api.spec.ts @@ -0,0 +1,8 @@ +import { test, expect } from '@playwright/test'; + +test('Confirm usage of test API', async ({ page }) => { + // Load app homepage + await page.goto('./account'); + await page.getByRole('heading', { name: 'Advanced' }).click(); + await expect(page.getByRole('textbox').nth(1)).toHaveValue('https://test-api.endorser.ch'); +}); \ No newline at end of file diff --git a/test-playwright/00-check-activity-feed.spec.ts b/test-playwright/01-check-activity-feed.spec.ts similarity index 100% rename from test-playwright/00-check-activity-feed.spec.ts rename to test-playwright/01-check-activity-feed.spec.ts diff --git a/test-playwright/01-check-discover-results.spec.ts b/test-playwright/02-check-discover-results.spec.ts similarity index 100% rename from test-playwright/01-check-discover-results.spec.ts rename to test-playwright/02-check-discover-results.spec.ts