Skip to content

Commit 18d1b15

Browse files
Ja1zmeclaude
andcommitted
fix(ci): corregir fallo unit tests + limpiar warnings de lint
- test.yml: pasar --passWithNoTests a vitest (proyecto sin tests por ahora) - DesktopContextMenu.tsx: eliminar import Settings no utilizado - BentoGrid.tsx: eliminar linkTags de deps de useMemo (ya cubierto por linkTagMap) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 0c0d8da commit 18d1b15

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: pnpm lint
3737

3838
- name: Unit tests
39-
run: pnpm test
39+
run: pnpm test -- --passWithNoTests
4040
env:
4141
DATABASE_URL: "postgresql://test:test@localhost:5432/test"
4242
AUTH_SECRET: "test-secret-for-ci"

src/components/bento/BentoGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export function BentoGrid({ className }: BentoGridProps) {
221221
}
222222

223223
return filtered;
224-
}, [projectWidgets, activeFilter, deferredSearchQuery, links, linkTags, linkTagMap, linkByIdMap]);
224+
}, [projectWidgets, activeFilter, deferredSearchQuery, links, linkTagMap, linkByIdMap]);
225225

226226
// Generate responsive layouts for all breakpoints
227227
const layouts = useMemo(() => {

src/components/desktop/DesktopContextMenu.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
Maximize2,
1515
X,
1616
LayoutDashboard,
17-
Settings,
1817
} from "lucide-react";
1918
import { useElectron } from "@/hooks/useElectron";
2019
import { isTauriWebView } from "@/lib/desktop";

0 commit comments

Comments
 (0)