This commit is contained in:
Simon L.
2026-03-18 18:27:05 +01:00
parent 428a5489aa
commit 56453b81ad
2 changed files with 2 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ test('Initial setup', async ({ page: setupPage }) => {
await containersPage.waitForURL('./containers');
// Reject IP addresses
await expect(containersPage.locator('#domain')).toBeVisible({ timeout: 1 * 60 * 1000 });
await containersPage.locator('#domain').click();
await containersPage.locator('#domain').fill('1.1.1.1');
await containersPage.getByRole('button', { name: 'Submit domain' }).click();

View File

@@ -25,6 +25,7 @@ test('Restore instance', async ({ page: setupPage }) => {
await containersPage.waitForURL('./containers');
// Reject example.com (requires enabled domain validation)
await expect(containersPage.locator('#domain')).toBeVisible({ timeout: 1 * 60 * 1000 });
await containersPage.locator('#domain').click();
await containersPage.locator('#domain').fill('example.com');
await containersPage.getByRole('button', { name: 'Submit domain' }).click();