Skip to content

Commit 52d9aa3

Browse files
committed
run all group tests
1 parent 7af33c1 commit 52d9aa3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

client/src/features/dataConnectorsV2/components/DataConnectorsBox.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ function DataConnectorBoxContent({
150150
onPageChange,
151151
perPage,
152152
}: DataConnectorBoxContentProps) {
153-
const [isEditOpen, setEditOpen] = useState(false);
153+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
154+
const [_isEditOpen, setEditOpen] = useState(false);
154155
const editToggle = useCallback(() => {
155156
setEditOpen((open) => !open);
156157
}, []);

tests/cypress/e2e/groupV2.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ describe("Edit v2 group", () => {
9393
cy.visit("/v2/groups");
9494
});
9595

96-
it.only("shows a group", () => {
96+
it("shows a group", () => {
9797
fixtures
9898
.readGroupV2()
9999
.readGroupV2Namespace()

0 commit comments

Comments
 (0)