Skip to content

Commit 0e1a9fd

Browse files
test: temporarily skip tests incompatible with prod backend #4749
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 21d136a commit 0e1a9fd

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

e2e/anvil/anvil-filters.spec.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,22 @@ test("Check that all filters exist on the Donors tab and are clickable", async (
4545
await testFilterPresence(page, ANVIL_TABS.DONORS, ANVIL_FILTER_NAMES);
4646
});
4747

48-
test("Check that all filters exist on the BioSamples tab and are clickable", async ({
48+
// TODO #4749 - re-enable when cc-dev is reverted to dev backend
49+
test.skip("Check that all filters exist on the BioSamples tab and are clickable", async ({
4950
page,
5051
}) => {
5152
await testFilterPresence(page, ANVIL_TABS.BIOSAMPLES, ANVIL_FILTER_NAMES);
5253
});
5354

54-
test("Check that all filters exist on the Activities tab and are clickable", async ({
55+
// TODO #4749 - re-enable when cc-dev is reverted to dev backend
56+
test.skip("Check that all filters exist on the Activities tab and are clickable", async ({
5557
page,
5658
}) => {
5759
await testFilterPresence(page, ANVIL_TABS.ACTIVITIES, ANVIL_FILTER_NAMES);
5860
});
5961

60-
test("Check that all filters exist on the Files tab and are clickable", async ({
62+
// TODO #4749 - re-enable when cc-dev is reverted to dev backend
63+
test.skip("Check that all filters exist on the Files tab and are clickable", async ({
6164
page,
6265
}) => {
6366
await testFilterPresence(page, ANVIL_TABS.FILES, ANVIL_FILTER_NAMES);

e2e/anvil/anvil-pagination.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ test("Check first page has disabled back and enabled forward pagination buttons
1616
await testFirstPagePagination(page, ANVIL_TABS.DONORS);
1717
});
1818

19-
test("Paginate through the entire Files tab to confirm that the page number stays consistent and that paginating forwards is disabled on the last page. Uses filters to reduce the amount of calls necessary", async ({
19+
// TODO #4749 - re-enable when cc-dev is reverted to dev backend
20+
test.skip("Paginate through the entire Files tab to confirm that the page number stays consistent and that paginating forwards is disabled on the last page. Uses filters to reduce the amount of calls necessary", async ({
2021
page,
2122
}) => {
2223
const result = await filterAndTestLastPagePagination(
@@ -28,6 +29,7 @@ test("Paginate through the entire Files tab to confirm that the page number stay
2829
test.fail();
2930
}
3031
});
32+
// end TODO #4749
3133

3234
test("Check forward and backwards pagination causes the page content to change on the Biosamples page", async ({
3335
page,

0 commit comments

Comments
 (0)