const example = '
' import { removeAttachmentLinks } from '../../../../../src/services/status_parser/status_parser.js' describe('statusParser.removeAttachmentLinks', () => { const exampleWithoutAttachmentLinks = '' it('removes attachment links', () => { const parsed = removeAttachmentLinks(example) expect(parsed).to.eql(exampleWithoutAttachmentLinks) }) it('works when the class is empty', () => { const parsed = removeAttachmentLinks('') expect(parsed).to.eql('') }) })