Skip to content

Commit

Permalink
Merge branch 'master' into experience/16135/update-service-link
Browse files Browse the repository at this point in the history
  • Loading branch information
etanb authored Oct 10, 2024
2 parents f7580e4 + 80f9da6 commit 211d6de
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ test.describe(
);
});

test.skip("clears 'Report ID'", async ({ dailyDataPage }) => {
test("clears 'Report ID'", async ({ dailyDataPage }) => {
// Search by Report ID
const reportId = await tableDataCellValue(dailyDataPage.page, 0, 0);
await searchInput(dailyDataPage.page).fill(reportId);
Expand Down Expand Up @@ -289,7 +289,7 @@ test.describe(
expect(await tableDataCellValue(dailyDataPage.page, 0, 0)).toEqual(reportId);
});

test.skip("returns match for Filename", async ({ dailyDataPage }) => {
test("returns match for Filename", async ({ dailyDataPage }) => {
// Filename search is currently broken and being tracked
// in ticket #15644
const fileName = await tableDataCellValue(dailyDataPage.page, 0, 4);
Expand All @@ -302,7 +302,8 @@ test.describe(

// Check filter status lists receiver value
const filterStatusText = filterStatus([fileName]);
await expect(dailyDataPage.page.getByTestId("filter-status")).toContainText(filterStatusText);
const actualText = await dailyDataPage.page.getByTestId("filter-status").textContent();
expect(filterStatusText).toContain(actualText);

//Check table data matches search
expect(await tableDataCellValue(dailyDataPage.page, 0, 4)).toEqual(fileName);
Expand Down

0 comments on commit 211d6de

Please sign in to comment.