Skip to content

Commit

Permalink
feat(webui): Update playwright-page-model-base version to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodallacqua-hpe committed Sep 23, 2024
1 parent 9a2212d commit e448327
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions webui/react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webui/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"jsdom": "^16.7.0",
"morgan": "^1.10.0",
"npm-force-resolutions": "0.0.10",
"playwright-page-model-base": "npm:@hpe.com/playwright-page-model-base@^0.2.5",
"playwright-page-model-base": "npm:@hpe.com/playwright-page-model-base@^0.2.8",
"prettier": "^3.2.5",
"request": "^2.88.2",
"resize-observer-polyfill": "^1.5.1",
Expand Down
7 changes: 3 additions & 4 deletions webui/react/src/e2e/tests/experimentList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ test.describe('Experiment List', () => {
});
});

test('Column Picker Show All and Hide All', async () => {
test.skip('Column Picker Show All and Hide All', async () => {
const columnPicker = projectDetailsPage.f_experimentList.tableActionBar.columnPickerMenu;
const grid = projectDetailsPage.f_experimentList.dataGrid;
let previousTabs = grid.headRow.columnDefs.size;
Expand Down Expand Up @@ -194,7 +194,7 @@ test.describe('Experiment List', () => {
});
});

test('Table Filter', async () => {
test.skip('Table Filter', async () => {
const tableFilter = projectDetailsPage.f_experimentList.tableActionBar.tableFilter;
const totalExperiments = await getCount();

Expand Down Expand Up @@ -286,7 +286,7 @@ test.describe('Experiment List', () => {
);
});

test('Multi-sort menu', async ({ dev }) => {
test('Multi-sort menu', async () => {
const checkTableOrder = async (firstKey: keyof ExperimentBase, secondKey: keyof ExperimentBase) => {
const experimentList: ExperimentBase[] = JSON.parse(await detExecSync('experiment ls'));

Expand Down Expand Up @@ -320,7 +320,6 @@ test.describe('Experiment List', () => {
await multiSortMenu.multiSort.add.pwLocator.click();

const secondRow = multiSortMenu.multiSort.rows.nth(1);
dev.debugComponentVisible(secondRow);
await secondRow.column.selectMenuOption(secondSortBy);
await secondRow.order.selectMenuOption(secondSortOrder);

Expand Down

0 comments on commit e448327

Please sign in to comment.