This is an automated email from the ASF dual-hosted git repository.
jli pushed a commit to branch enable-tagging-system
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/enable-tagging-system by this
push:
new c8e636f22e add column for tags in dashboard list
c8e636f22e is described below
commit c8e636f22eb9dd032bb5035af2906e484a582455
Author: Joe Li <[email protected]>
AuthorDate: Fri Feb 21 12:17:57 2025 -0800
add column for tags in dashboard list
---
.../cypress-base/cypress/e2e/dashboard_list/list.test.ts | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git
a/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
b/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
index c887ae0e6c..dc556b9254 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
@@ -16,15 +16,15 @@
* specific language governing permissions and limitations
* under the License.
*/
-import { DASHBOARD_LIST } from 'cypress/utils/urls';
import { setGridMode, toggleBulkSelect } from 'cypress/utils';
+import { DASHBOARD_LIST } from 'cypress/utils/urls';
import {
- setFilter,
interceptBulkDelete,
- interceptUpdate,
interceptDelete,
interceptFav,
interceptUnfav,
+ interceptUpdate,
+ setFilter,
} from '../dashboard/utils';
function orderAlphabetical() {
@@ -72,9 +72,10 @@ describe('Dashboards list', () => {
cy.getBySel('listview-table').should('be.visible');
cy.getBySel('sort-header').eq(1).contains('Name');
cy.getBySel('sort-header').eq(2).contains('Status');
- cy.getBySel('sort-header').eq(3).contains('Owners');
- cy.getBySel('sort-header').eq(4).contains('Last modified');
- cy.getBySel('sort-header').eq(5).contains('Actions');
+ cy.getBySel('sort-header').eq(3).contains('Tags');
+ cy.getBySel('sort-header').eq(4).contains('Owners');
+ cy.getBySel('sort-header').eq(5).contains('Last modified');
+ cy.getBySel('sort-header').eq(6).contains('Actions');
});
it('should sort correctly in list mode', () => {