Converting Tests back to C# but still with Playwright

This commit is contained in:
2026-06-03 14:45:18 -04:00
parent 85834466f1
commit 46150d3a69
209 changed files with 1503 additions and 683 deletions
+23
View File
@@ -0,0 +1,23 @@
using NUnit.Framework;
using Tests.Helpers;
namespace Tests;
[SetUpFixture]
public class GlobalSetup
{
[OneTimeSetUp]
public async Task GlobalStart()
{
if (Environment.GetEnvironmentVariable("RUN_AGAINST_PRODUCTION") != "true")
{
await LocalServer.StartAsync();
}
}
[OneTimeTearDown]
public void GlobalStop()
{
LocalServer.Stop();
}
}