Skip to content

Commit

Permalink
Update dependencies (#1468)
Browse files Browse the repository at this point in the history
* update dependencies

* fix lint
  • Loading branch information
duranb authored Sep 18, 2024
1 parent 7a3b964 commit 3f943e4
Show file tree
Hide file tree
Showing 15 changed files with 247 additions and 202 deletions.
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Constraints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export class Constraints {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(constraintName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Dictionaries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export class Dictionaries {

await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(dictionaryName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/ExpansionRules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class ExpansionRules {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(expansionRuleName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class Model {
const nameColumnHeader = await this.associationTable.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(associationName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class Models {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(modelName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Parcels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class Parcels {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(parcelName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Plans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class Plans {
const nameColumnHeader = await this.table.getByRole('columnheader', { exact: true, name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(planName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/SchedulingConditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class SchedulingConditions {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(goalName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/SchedulingGoals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class SchedulingGoals {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(goalName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/Sequence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class Sequence {
const nameColumnHeader = await table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(itemName);
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/fixtures/View.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class View {
const nameColumnHeader = await this.table.getByRole('columnheader', { name: 'Name' });
await nameColumnHeader.hover();

const filterIcon = await nameColumnHeader.locator('.ag-icon-menu');
const filterIcon = await nameColumnHeader.locator('.ag-icon-filter');
await expect(filterIcon).toBeVisible();
await filterIcon.click();
await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(viewName);
Expand Down
Loading

0 comments on commit 3f943e4

Please sign in to comment.