19302: removed .only in test spec Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa...
authorLisa Knox <lisaknox83@gmail.com>
Fri, 3 Nov 2023 18:52:50 +0000 (14:52 -0400)
committerLisa Knox <lisaknox83@gmail.com>
Fri, 3 Nov 2023 18:52:50 +0000 (14:52 -0400)
cypress/integration/project.spec.js
src/views-components/side-panel/side-panel-collapsed.tsx

index a8663d862261bdd51b1be0c353c2ba9ad1a363be..e61138219dcf01558151f2179aec78983c73f6ad 100644 (file)
@@ -564,7 +564,7 @@ describe("Project tests", function () {
         );
     });
 
-    it.only("sorts displayed items correctly", () => {
+    it("sorts displayed items correctly", () => {
         cy.loginAs(activeUser);
 
         cy.get('[data-cy=project-panel] button[title="Select columns"]').click();
index 2fddf82f54d24c420e58c200569a9eff8f37e8e7..338d9b3eef0856a092a34c2b51c75de4f0d6bf77 100644 (file)
@@ -2,7 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import React, { ReactElement, useEffect, useState } from 'react'
+import React, { ReactElement } from 'react'
 import { connect } from 'react-redux'
 import { ProjectsIcon, ProcessIcon, FavoriteIcon, ShareMeIcon, TrashIcon, PublicFavoriteIcon, GroupsIcon } from 'components/icon/icon'
 import { List, ListItem, Tooltip } from '@material-ui/core'
@@ -20,7 +20,6 @@ import {
     navigateToTrash,
 } from 'store/navigation/navigation-action'
 import { RouterAction } from 'react-router-redux'
-import { Tree } from 'models/tree'
 
 type CssRules = 'root' | 'unselected' | 'selected'