18 lines
505 B
C#
18 lines
505 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class WorkOrderSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task WorkOrder_SubmitsWithUploadedWorkbook() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.WorkOrder,
|
|
"MIGRATED-TC-010",
|
|
uploads:
|
|
[
|
|
("Filter by Work Order", "single_workorder.xlsx")
|
|
]);
|
|
}
|