23 lines
698 B
C#
23 lines
698 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class TimeSpanPcWoPartOpSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task TimeSpanPcWoPartOp_Submits() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.TimeSpanPcWoPartOp,
|
|
"MIGRATED-TC-080",
|
|
"01/01/2019",
|
|
"12/31/2019",
|
|
[
|
|
("Filter by Profit Center", "1AM")
|
|
],
|
|
[
|
|
("Filter by Work Order", "single_workorder.xlsx"),
|
|
("Filter By Item/Operation/MIS", "single_operation.xlsx")
|
|
]);
|
|
}
|