Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experience/15262/receiver status smoke #15824

Merged
merged 20 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@
},
);

test("receiver name", async ({adminReceiverStatusPage, isMockDisabled}) => {
// TODO: revisit after filters have been fixed per ticket #15737
test.skip("receiver name", async ({adminReceiverStatusPage, isMockDisabled}) => {

Check warning on line 179 in frontend-react/e2e/spec/chromium-only/authenticated/receiver-status-page-user-flow.spec.ts

View workflow job for this annotation

GitHub Actions / Lint

Unexpected use of the `.skip()` annotation
test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'receiver name' test");
const {organizationName, receiverName, successRate} =
adminReceiverStatusPage.timePeriodData[1];
Expand Down Expand Up @@ -206,7 +207,7 @@
expect(defaultReceiversStatusRowsCount).toBe(adminReceiverStatusPage.timePeriodData.length);
});

test("result message", async ({adminReceiverStatusPage, isMockDisabled}) => {
test.skip("result message", async ({adminReceiverStatusPage, isMockDisabled}) => {
test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'result message' test");
// get first entry's result from all-fail receiver's first day -> third time period
const receiverI = 0;
Expand Down Expand Up @@ -242,7 +243,7 @@
// await adminReceiverStatusPage.testReceiverStatusDisplay();
});

test("success type", async ({ adminReceiverStatusPage, isMockDisabled }) => {
test.skip("success type", async ({ adminReceiverStatusPage, isMockDisabled }) => {
test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'success type' test");
const [failRow, ,] = adminReceiverStatusPage.timePeriodData;
const failRowTitle = adminReceiverStatusPage.getExpectedReceiverStatusRowTitle(
Expand Down
Loading