remove case

This commit is contained in:
DennisYu07 2026-03-26 18:53:51 +08:00
parent 14be6aed4e
commit b0d01a1fb9

View file

@ -98,20 +98,6 @@ describe('HooksManagementDialog', () => {
expect(lastFrame()).toContain('Loading hooks');
});
it('should render hooks list after loading', async () => {
const { lastFrame, unmount } = renderWithProviders(
<HooksManagementDialog onClose={mockOnClose} />,
);
// Wait for useEffect to complete
await new Promise((resolve) => setTimeout(resolve, 100));
const output = lastFrame();
expect(output).toContain('Hooks');
unmount();
});
it('should show total configured hooks count', async () => {
const { lastFrame, unmount } = renderWithProviders(
<HooksManagementDialog onClose={mockOnClose} />,