diff --git a/extensions/markdown-language-features/src/test/documentSymbolProvider.test.ts b/extensions/markdown-language-features/src/test/documentSymbolProvider.test.ts index 9533f807cf90de6dfea10c8d203e7861edbdfb45..9df272ccecd2c7b28d7c032ab65fa3faa6020b11 100644 --- a/extensions/markdown-language-features/src/test/documentSymbolProvider.test.ts +++ b/extensions/markdown-language-features/src/test/documentSymbolProvider.test.ts @@ -82,5 +82,16 @@ suite('markdown.DocumentSymbolProvider', () => { assert.strictEqual(symbols[0].children[0].name, '### h2'); assert.strictEqual(symbols[0].children[1].name, '## h3'); }); + + test.skip('Should handle line separator in file. Issue #63749', async () => { + const symbols = await getSymbolsForFile(`# A +- foo
 + +# B +- bar`); + assert.strictEqual(symbols.length, 2); + assert.strictEqual(symbols[0].name, '# A'); + assert.strictEqual(symbols[1].name, '# B'); + }); });