import { describe, it, expect, vi } from 'vitest'; import { render, screen } from '@testing-library/react'; vi.mock('@/components/layout/Sidebar', () => ({ Sidebar: () => , })); vi.mock('@/components/layout/TopBar', () => ({ TopBar: () =>
, })); import DashboardLayout from '../../../src/app/(dashboard)/layout'; describe('DashboardLayout', () => { it('renders sidebar, topbar and children', () => { render(