Migrate Playwright suite to .NET UI tests and deprecate TS project
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace JdeScoping.Ui.Tests.Support;
|
||||
|
||||
internal static class UiTestSettings
|
||||
{
|
||||
public static string BaseUrl =>
|
||||
Environment.GetEnvironmentVariable("JDESCOPING_UI_BASE_URL")
|
||||
?? "http://localhost:5294";
|
||||
|
||||
public static bool Headless =>
|
||||
!string.Equals(Environment.GetEnvironmentVariable("JDESCOPING_UI_HEADED"), "true", StringComparison.OrdinalIgnoreCase);
|
||||
}
|
||||
Reference in New Issue
Block a user