24 lines
557 B
TypeScript
24 lines
557 B
TypeScript
import { normalizeContent } from './feed-answer';
|
|
|
|
describe('FeedAnswer', () => {
|
|
describe('normalizeContent', () => {
|
|
it('should normalize links to format expected by renderMarkdown', () => {
|
|
expect(
|
|
normalizeContent(`[!](https://nx.dev/shared/assets/image.png)`)
|
|
).toEqual(`[!](/shared/assets/image.png)`);
|
|
});
|
|
|
|
it('should escape numbers the beginning of lines to prevent numbered lists', () => {
|
|
expect(
|
|
normalizeContent(`
|
|
1. Hello
|
|
2. World
|
|
`)
|
|
).toEqual(`
|
|
1\\. Hello
|
|
2\\. World
|
|
`);
|
|
});
|
|
});
|
|
});
|