import { test, expect } from '@playwright/test';

test('Confirm usage of test API', async ({ page }) => {
  // Load account view
  await page.goto('./account');
  await page.getByRole('heading', { name: 'Advanced' }).click();
  await expect(page.getByRole('textbox').nth(1)).toHaveValue('https://test-api.endorser.ch');
});