fix: rename left-panel nav item to Device Inventory
ha-relevant: maybe
This commit is contained in:
@@ -15,7 +15,7 @@ import { useLatestRelease } from '@/hooks/useLatestRelease'
|
|||||||
const STANDALONE = import.meta.env.VITE_STANDALONE === 'true'
|
const STANDALONE = import.meta.env.VITE_STANDALONE === 'true'
|
||||||
|
|
||||||
const PENDING_TRIGGERS: { kind: 'pending' | 'hidden'; icon: typeof ScanLine; label: string }[] = [
|
const PENDING_TRIGGERS: { kind: 'pending' | 'hidden'; icon: typeof ScanLine; label: string }[] = [
|
||||||
{ kind: 'pending', icon: ScanLine, label: 'Pending Devices' },
|
{ kind: 'pending', icon: ScanLine, label: 'Device Inventory' },
|
||||||
{ kind: 'hidden', icon: EyeOff, label: 'Hidden Devices' },
|
{ kind: 'hidden', icon: EyeOff, label: 'Hidden Devices' },
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ describe('Sidebar', () => {
|
|||||||
it('shows all view nav items', () => {
|
it('shows all view nav items', () => {
|
||||||
render(<Sidebar {...defaultProps} />)
|
render(<Sidebar {...defaultProps} />)
|
||||||
expect(screen.getByText('Canvas')).toBeInTheDocument()
|
expect(screen.getByText('Canvas')).toBeInTheDocument()
|
||||||
expect(screen.getByText('Pending Devices')).toBeInTheDocument()
|
expect(screen.getByText('Device Inventory')).toBeInTheDocument()
|
||||||
expect(screen.getByText('Hidden Devices')).toBeInTheDocument()
|
expect(screen.getByText('Hidden Devices')).toBeInTheDocument()
|
||||||
expect(screen.getByText('Scan History')).toBeInTheDocument()
|
expect(screen.getByText('Scan History')).toBeInTheDocument()
|
||||||
})
|
})
|
||||||
@@ -233,9 +233,9 @@ describe('Sidebar', () => {
|
|||||||
|
|
||||||
// ── Pending / Hidden open modal ────────────────────────────────────────────
|
// ── Pending / Hidden open modal ────────────────────────────────────────────
|
||||||
|
|
||||||
it('calls onOpenPending with pending status when Pending Devices is clicked', () => {
|
it('calls onOpenPending with pending status when Device Inventory is clicked', () => {
|
||||||
render(<Sidebar {...defaultProps} />)
|
render(<Sidebar {...defaultProps} />)
|
||||||
fireEvent.click(screen.getByText('Pending Devices'))
|
fireEvent.click(screen.getByText('Device Inventory'))
|
||||||
expect(defaultProps.onOpenPending).toHaveBeenCalledWith(undefined, 'pending')
|
expect(defaultProps.onOpenPending).toHaveBeenCalledWith(undefined, 'pending')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user