16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
|
|
import { testConversion } from './common';
|
|
|
|
|
|
test('test basic internal link block parsing', async () => {
|
|
await testConversion('internal-link-basic', 'markdown');
|
|
});
|
|
|
|
test('test complex internal link block parsing', async () => {
|
|
await testConversion('internal-link-bullet', 'markdown');
|
|
});
|
|
|
|
test('test basic internal link with description', async () => {
|
|
await testConversion('internal-link-described', 'markdown');
|
|
});
|