]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/helpers/markdown.ts
Fix live quota tests
[github/Chocobozzz/PeerTube.git] / server / tests / helpers / markdown.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import { mdToOneLinePlainText } from '@server/helpers/markdown'
4 import { expect } from 'chai'
5
6 describe('Markdown helpers', function () {
7
8 describe('Plain text', function () {
9
10 it('Should convert a list to plain text', function () {
11 const result = mdToOneLinePlainText(`* list 1
12 * list 2
13 * list 3`)
14
15 expect(result).to.equal('list 1, list 2, list 3')
16 })
17
18 it('Should convert a list with indentation to plain text', function () {
19 const result = mdToOneLinePlainText(`Hello:
20 * list 1
21 * list 2
22 * list 3`)
23
24 expect(result).to.equal('Hello: list 1, list 2, list 3')
25 })
26
27 it('Should convert HTML to plain text', function () {
28 const result = mdToOneLinePlainText(`**Hello** <strong>coucou</strong>`)
29
30 expect(result).to.equal('Hello coucou')
31 })
32
33 it('Should convert tags to plain text', function () {
34 const result = mdToOneLinePlainText(`#déconversion\n#newage\n#histoire`)
35
36 expect(result).to.equal('#déconversion #newage #histoire')
37 })
38 })
39 })