Add admin ui tests (#40914)

* Add admin ui tests

* fix notes test

* Apply suggestions from code review

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
Leon Friedrich
2025-10-16 01:14:48 +13:00
committed by GitHub
parent 6fbcc6d0fb
commit bd1cbabea8
9 changed files with 128 additions and 7 deletions

View File

@@ -156,10 +156,13 @@ public abstract partial class InteractionTest
- type: CombatMode
";
protected static PoolSettings Default => new() { Connected = true, Dirty = true };
protected virtual PoolSettings Settings => Default;
[SetUp]
public virtual async Task Setup()
{
Pair = await PoolManager.GetServerClient(new PoolSettings { Connected = true, Dirty = true });
Pair = await PoolManager.GetServerClient(Settings);
// server dependencies
SEntMan = Server.ResolveDependency<IEntityManager>();