19 lines
521 B
C#
19 lines
521 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class TimeSpanOperatorSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task TimeSpanOperator_Submits() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.TimeSpanOperator,
|
|
"MIGRATED-TC-050",
|
|
"01/01/2019",
|
|
"12/31/2019",
|
|
[
|
|
("Filter by Operator", "ADAMSSN")
|
|
]);
|
|
}
|