This commit is contained in:
Leendert de Borst
2026-01-30 15:23:38 +01:00
parent 1bc82999a3
commit ff0cc90da9
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ using AliasServerDb;
/// <summary>
/// Base class for Playwright E2E tests that run against Admin webapp.
/// </summary>
public class AdminPlaywrightTest : PlaywrightTest
public abstract class AdminPlaywrightTest : PlaywrightTest
{
private const int BasePort = 5700;
private static int _currentPort = BasePort;

View File

@@ -15,7 +15,7 @@ using Microsoft.Playwright;
/// <summary>
/// Base class for tests that use Playwright for E2E browser testing.
/// </summary>
public class ClientPlaywrightTest : PlaywrightTest
public abstract class ClientPlaywrightTest : PlaywrightTest
{
private const int BasePort = 5600;
private static int _currentPort = BasePort;