20 lines
579 B
C#
20 lines
579 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class TimeSpanPcOperatorSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task TimeSpanPcOperator_Submits() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.TimeSpanPcOperator,
|
|
"MIGRATED-TC-160",
|
|
"01/01/2019",
|
|
"12/31/2019",
|
|
[
|
|
("Filter by Profit Center", "1AM"),
|
|
("Filter by Operator", "ADAMSSN")
|
|
]);
|
|
}
|