test: consolidates list view e2e tests (#10263)

There were a handful of list view e2e tests written into the text and
email field test suite, making them hard to find as they were isolated
from other related tests. A few of these tests were also duplicative
across suites, making CI run them twice unnecessarily.
This commit is contained in:
Jacob Fletcher
2024-12-30 16:09:42 -05:00
committed by GitHub
parent eb69885a89
commit 270ac10fb4
9 changed files with 474 additions and 665 deletions

View File

@@ -126,9 +126,6 @@ export interface UserAuthOperations {
export interface Post {
id: string;
title?: string | null;
/**
* Hides posts for the `filtered` join field in categories
*/
isFiltered?: boolean | null;
restrictedField?: string | null;
upload?: (string | null) | Upload;
@@ -231,9 +228,6 @@ export interface Category {
docs?: (string | Post)[] | null;
hasNextPage?: boolean | null;
} | null;
/**
* Static Description
*/
hasManyPosts?: {
docs?: (string | Post)[] | null;
hasNextPage?: boolean | null;