Skip to content

Commit

Permalink
Merge branch 'master' into engagement/jessica/15541-cli-add-code-to-c…
Browse files Browse the repository at this point in the history
…ondition
  • Loading branch information
JessicaWNava authored Sep 10, 2024
2 parents 39584b6 + 93c0b4f commit 6a73ba9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ const SMOKE_RECEIVERS = [TEST_ORG_UP_RECEIVER_UP, TEST_ORG_CP_RECEIVER_CP, TEST_
test.describe(
"Daily Data page - user flow smoke tests",
{
tag: "@smoke",
// TODO: Investigate Daily Data page - user flow smoke tests › admin user › ignore org - FULL_ELR receiver › filter › on 'Apply' › clears 'Report ID'
//tag: "@smoke",
},
() => {
test.describe("admin user", () => {
Expand Down Expand Up @@ -206,7 +207,7 @@ test.describe(
);
});

test("clears 'Report ID'", async ({ dailyDataPage }) => {
test.skip("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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ const test = baseTest.extend<AdminReceiverStatusPageFixtures>({

test.describe("Admin Receiver Status Page",
{
tag: "@smoke",
// TODO: Investigate Admin Receiver Status Page › functions correctly › receiver statuses › time period modals
// tag: "@smoke",
}, () => {
test.use({ storageState: logins.admin.path });
test.describe("displays correctly", () => {
Expand Down Expand Up @@ -319,7 +320,7 @@ test.describe("Admin Receiver Status Page",
});
});

test("time period modals", async ({ adminReceiverStatusPage }) => {
test.skip("time period modals", async ({ adminReceiverStatusPage }) => {
const result = await adminReceiverStatusPage.testReceiverTimePeriodModals(true);
expect(result).toBe(true);
});
Expand Down

0 comments on commit 6a73ba9

Please sign in to comment.