logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe

status_parses.spec.js (1094B)


      1 import { removeAttachmentLinks } from '../../../../../src/services/status_parser/status_parser.js'
      2 
      3 const example = '<div class="status-content">@<a href="https://sealion.club/user/4" class="h-card mention" title="dewoo">dwmatiz</a> <a href="https://social.heldscal.la/file/3deb764ada10ce64a61b7a070b75dac45f86d2d5bf213bf18873da71d8714d86.png" title="https://social.heldscal.la/file/3deb764ada10ce64a61b7a070b75dac45f86d2d5bf213bf18873da71d8714d86.png" class="attachment" id="attachment-159853" rel="nofollow external">https://social.heldscal.la/attachment/159853</a></div>'
      4 
      5 describe('statusParser.removeAttachmentLinks', () => {
      6   const exampleWithoutAttachmentLinks = '<div class="status-content">@<a href="https://sealion.club/user/4" class="h-card mention" title="dewoo">dwmatiz</a> </div>'
      7 
      8   it('removes attachment links', () => {
      9     const parsed = removeAttachmentLinks(example)
     10     expect(parsed).to.eql(exampleWithoutAttachmentLinks)
     11   })
     12 
     13   it('works when the class is empty', () => {
     14     const parsed = removeAttachmentLinks('<a></a>')
     15     expect(parsed).to.eql('<a></a>')
     16   })
     17 })