(id: string, content = `content-${id}`)
| 7 | import type { QueuedMothershipMessage } from '@/stores/mothership-queue/types' |
| 8 | |
| 9 | const message = (id: string, content = `content-${id}`): QueuedMothershipMessage => ({ |
| 10 | id, |
| 11 | content, |
| 12 | }) |
| 13 | |
| 14 | describe('useMothershipQueueStore', () => { |
| 15 | beforeEach(() => { |