20 lines
554 B
C#
20 lines
554 B
C#
using JdeScoping.Ui.Tests.Support;
|
|
|
|
namespace JdeScoping.Ui.Tests;
|
|
|
|
public sealed class TimeSpanItemNumberSearchTests(PlaywrightFixture fixture) : SearchFlowTestBase(fixture)
|
|
{
|
|
[Fact]
|
|
[Trait("Category", "RequiresDockerHost")]
|
|
public Task TimeSpanItemNumber_Submits() =>
|
|
RunSearchSubmissionAsync(
|
|
UiSearchTypes.TimeSpanItem,
|
|
"MIGRATED-TC-140",
|
|
"01/01/2019",
|
|
"12/31/2019",
|
|
uploads:
|
|
[
|
|
("Filter by Item Number", "single_item.xlsx")
|
|
]);
|
|
}
|