{ const { conversationsStore } = await import('$lib/stores/conversations.svelte'); waitFor(() => setTimeout(() => { conversationsStore.conversations = mockConversations; }, 0)); }} >
{ const { conversationsStore } = await import('$lib/stores/conversations.svelte'); waitFor(() => setTimeout(() => { conversationsStore.conversations = mockConversations; }, 0)); const searchTrigger = screen.getByText('Search conversations'); userEvent.click(searchTrigger); }} >
{ // Mock empty conversations store const { conversationsStore } = await import('$lib/stores/conversations.svelte'); conversationsStore.conversations = []; }} >