Browse Source

fix(playwright): view title correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/4630/head
Pranav C 2 years ago
parent
commit
b52164d70d
  1. 9
      tests/playwright/tests/views.spec.ts

9
tests/playwright/tests/views.spec.ts

@ -45,15 +45,16 @@ test.describe('Views CRUD Operations', () => {
newTitle: 'CityGallery2',
});
await dashboard.viewSidebar.changeViewIcon({
title: 'CityGallery',
icon: 'american-football',
});
await dashboard.viewSidebar.verifyView({
title: 'CityGallery2',
index: 3,
});
await dashboard.viewSidebar.changeViewIcon({
title: 'CityGallery2',
icon: 'american-football',
});
// todo: Enable when view bug is fixed
// await dashboard.viewSidebar.reorderViews({
// sourceView: "CityGrid",

Loading…
Cancel
Save