Skip to content

Commit

Permalink
LPD-29194 Sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
chestofwonders authored and brianchandotcom committed Aug 23, 2024
1 parent 153b665 commit 20162c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export class FiltersPage {
private readonly newFilterModal: NewFilterModal;
private readonly newSelectionFilterModal: NewSelectionFilterModal;
readonly page: Page;
readonly searchInput: Locator;
readonly searchButton: Locator;
readonly searchInput: Locator;

constructor(page: Page) {
this.dataSetPage = new DataSetPage(page);
Expand Down Expand Up @@ -149,13 +149,7 @@ export class FiltersPage {
this.searchInput = page.getByPlaceholder('Search');
}

async goto({dataSetLabel}: {dataSetLabel: string}) {
await this.dataSetPage.goto({
dataSetLabel,
});

await this.dataSetPage.selectTab('Filters');
}

async assertFiltersTableRowCount(rowCount: number) {
await expect(
Expand Down Expand Up @@ -347,6 +341,14 @@ export class FiltersPage {
});
}

async goto({dataSetLabel}: {dataSetLabel: string}) {
await this.dataSetPage.goto({
dataSetLabel,
});

await this.dataSetPage.selectTab('Filters');
}

async openNewFilterModal({
dropdownItemLabel,
expectSaveHidden = false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ const PICKLIST_VALUE_NAME = getRandomString();

export const test = mergeTests(
dataSetManagerApiHelpersTest,
dataSetManagerSetupTest,
featureFlagsTest({
'LPS-178052': true,
}),
filtersPageTest,
loginTest(),
dataSetManagerSetupTest,
picklistApiHelpersTest
);

Expand Down

0 comments on commit 20162c3

Please sign in to comment.