test: addListFilter helper (#11026)

Adds a new `addListFilter` e2e helper. This will help to standardize
this common functionality across all tests that require filtering list
tables and help reduce the overall lines of code within each test file.
This commit is contained in:
Jacob Fletcher
2025-02-06 16:17:27 -05:00
committed by GitHub
parent 8b6ba625b8
commit 05e6f3326b
10 changed files with 143 additions and 212 deletions

View File

@@ -1439,8 +1439,6 @@ export interface RelationshipField {
| null;
relationToRow?: (string | null) | RowField;
relationToRowMany?: (string | RowField)[] | null;
disableRelation?: boolean | null;
filteredRelationship?: (string | null) | RelationshipField;
updatedAt: string;
createdAt: string;
}
@@ -3030,8 +3028,6 @@ export interface RelationshipFieldsSelect<T extends boolean = true> {
relationshipWithMinRows?: T;
relationToRow?: T;
relationToRowMany?: T;
disableRelation?: T;
filteredRelationship?: T;
updatedAt?: T;
createdAt?: T;
}