mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
21 lines
660 B
TypeScript
21 lines
660 B
TypeScript
import { linkify } from './markdown';
|
|
|
|
describe('util/markdown', () => {
|
|
describe('.linkify', () => {
|
|
const md = `Some references:
|
|
|
|
* Commit: f8083175fe890cbf14f41d0a06e7aa35d4989587
|
|
* Commit (fork): foo@f8083175fe890cbf14f41d0a06e7aa35d4989587
|
|
* Commit (repo): remarkjs/remark@e1aa9f6c02de18b9459b7d269712bcb50183ce89
|
|
* Issue or PR (\`#\`): #1
|
|
* Issue or PR (\`GH-\`): GH-1
|
|
* Issue or PR (fork): foo#1
|
|
* Issue or PR (project): remarkjs/remark#1
|
|
* Mention: @wooorm
|
|
`;
|
|
it('works', async () => {
|
|
// FIXME: explicit assert condition
|
|
expect(await linkify(md, { repository: 'some/repo' })).toMatchSnapshot();
|
|
});
|
|
});
|
|
});
|