import { describe, expect, it } from 'vitest' import { optimizeMessagingAttachmentUrl } from './index' describe('messaging-react public utils', () => { it('exports optimizeMessagingAttachmentUrl from the package root', () => { expect( optimizeMessagingAttachmentUrl('https://assets.linktr.ee/photo.jpg') ).toBe( 'https://assets.linktr.ee/photo.jpg?io=true&size=messaging-attachment-v1_0' ) }) })